You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by ti...@apache.org on 2018/07/31 23:19:45 UTC

[drill] branch master updated (8f9d397 -> b774413)

This is an automated email from the ASF dual-hosted git repository.

timothyfarkas pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git.


    from 8f9d397  DRILL-6617: Changing name of implicit RowId column from implicitColumn to implicitRIDColumn.
     new 726c905  DRILL-6651: Add missing package statements
     new b774413  DRILL-6650: Remove stray semicolon in imports for PrintingResultsListener.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../apache/drill/exec/store/parquet/TestComplexColumnInSchema.java    | 4 ++--
 .../org/apache/drill/exec/store/parquet/TestParquetReaderUtility.java | 2 +-
 .../src/test/java/org/apache/drill/test/PrintingResultsListener.java  | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)


[drill] 02/02: DRILL-6650: Remove stray semicolon in imports for PrintingResultsListener.

Posted by ti...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

timothyfarkas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git

commit b77441333010b60683c78dbc4cc349b2ee6c0c53
Author: Timothy Farkas <ti...@apache.org>
AuthorDate: Tue Jul 31 12:45:09 2018 -0700

    DRILL-6650: Remove stray semicolon in imports for PrintingResultsListener.
    
    closes #1410
---
 .../src/test/java/org/apache/drill/test/PrintingResultsListener.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exec/java-exec/src/test/java/org/apache/drill/test/PrintingResultsListener.java b/exec/java-exec/src/test/java/org/apache/drill/test/PrintingResultsListener.java
index f5cd995..e1cfaeb 100644
--- a/exec/java-exec/src/test/java/org/apache/drill/test/PrintingResultsListener.java
+++ b/exec/java-exec/src/test/java/org/apache/drill/test/PrintingResultsListener.java
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
 package org.apache.drill.test;
-;
+
 import org.apache.drill.common.config.DrillConfig;
 import org.apache.drill.common.exceptions.UserException;
 import org.apache.drill.exec.client.LoggingResultsListener;


[drill] 01/02: DRILL-6651: Add missing package statements

Posted by ti...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

timothyfarkas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git

commit 726c905c59dd11a6274bd2c49be22abde1e96bb2
Author: Ben-Zvi <bb...@mapr.com>
AuthorDate: Tue Jul 31 15:48:06 2018 -0700

    DRILL-6651: Add missing package statements
    
    closes #1411
---
 .../apache/drill/exec/store/parquet/TestComplexColumnInSchema.java    | 4 ++--
 .../org/apache/drill/exec/store/parquet/TestParquetReaderUtility.java | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestComplexColumnInSchema.java b/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestComplexColumnInSchema.java
index d0977b8..29c2237 100644
--- a/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestComplexColumnInSchema.java
+++ b/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestComplexColumnInSchema.java
@@ -15,9 +15,9 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-import org.apache.drill.common.expression.SchemaPath;
-import org.apache.drill.exec.store.parquet.ParquetReaderUtility;
+package org.apache.drill.exec.store.parquet;
 
+import org.apache.drill.common.expression.SchemaPath;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.fs.Path;
 import org.apache.parquet.hadoop.metadata.ParquetMetadata;
diff --git a/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestParquetReaderUtility.java b/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestParquetReaderUtility.java
index 4b24212..1aab4ab 100644
--- a/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestParquetReaderUtility.java
+++ b/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestParquetReaderUtility.java
@@ -15,7 +15,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-import org.apache.drill.exec.store.parquet.ParquetReaderUtility;
+package org.apache.drill.exec.store.parquet;
 
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.fs.Path;