You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by vo...@apache.org on 2019/11/14 17:18:56 UTC

[drill] 03/05: DRILL-7409: Moving test with huge test data to the drill-test-framework.

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

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

commit 0b6608655dd8217a6706119605d65743cf5549a2
Author: Denys Ordynskiy <de...@gmail.com>
AuthorDate: Tue Nov 5 14:55:09 2019 +0200

    DRILL-7409: Moving test with huge test data to the drill-test-framework.
    
    closes #1891
---
 .../columnreaders/TestColumnReaderFactory.java        |  15 ---------------
 .../test/resources/parquet/bigIntDictionary.parquet   | Bin 1918423 -> 0 bytes
 2 files changed, 15 deletions(-)

diff --git a/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/columnreaders/TestColumnReaderFactory.java b/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/columnreaders/TestColumnReaderFactory.java
index fd1d54d..b54bade 100644
--- a/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/columnreaders/TestColumnReaderFactory.java
+++ b/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/columnreaders/TestColumnReaderFactory.java
@@ -98,19 +98,4 @@ public class TestColumnReaderFactory extends BaseTestQuery {
     // query parquet file. We shouldn't get any exception
     testNoResult("SELECT * FROM cp.`parquet/decimal_nodictionary.parquet`");
   }
-
-  /**
-   * check if BigInt is read correctly with dictionary encoding.
-   */
-  @Test
-  public void testBigIntWithDictionary() throws Exception {
-    String query = "select sum(ts) as total from cp.`parquet/bigIntDictionary.parquet`";
-
-    testBuilder()
-    .sqlQuery(query)
-    .ordered()
-    .baselineColumns("total")
-    .baselineValues(190928593476806865L)
-    .build().run();
-  }
 }
diff --git a/exec/java-exec/src/test/resources/parquet/bigIntDictionary.parquet b/exec/java-exec/src/test/resources/parquet/bigIntDictionary.parquet
deleted file mode 100644
index 51c59cc..0000000
Binary files a/exec/java-exec/src/test/resources/parquet/bigIntDictionary.parquet and /dev/null differ