DRILL-7409: Moving test with huge test data to the drill-test-framework.

closes #1891
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 @@
     // 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
--- a/exec/java-exec/src/test/resources/parquet/bigIntDictionary.parquet
+++ /dev/null
Binary files differ