You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2020/10/13 16:10:17 UTC

[iceberg] branch master updated: Spark: Add parameter name to TestPartitionPruning (#1600)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 28ee18b  Spark: Add parameter name to TestPartitionPruning (#1600)
28ee18b is described below

commit 28ee18b8fd9d07e6be6f5965bd863f29cf5228fc
Author: Kyle Bendickson <98...@users.noreply.github.com>
AuthorDate: Tue Oct 13 09:10:08 2020 -0700

    Spark: Add parameter name to TestPartitionPruning (#1600)
---
 .../apache/iceberg/spark/source/TestPartitionPruning.java    | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/spark/src/test/java/org/apache/iceberg/spark/source/TestPartitionPruning.java b/spark/src/test/java/org/apache/iceberg/spark/source/TestPartitionPruning.java
index d8b96c9..9159563 100644
--- a/spark/src/test/java/org/apache/iceberg/spark/source/TestPartitionPruning.java
+++ b/spark/src/test/java/org/apache/iceberg/spark/source/TestPartitionPruning.java
@@ -75,14 +75,14 @@ public abstract class TestPartitionPruning {
   private static final Configuration CONF = new Configuration();
   private static final HadoopTables TABLES = new HadoopTables(CONF);
 
-  @Parameterized.Parameters
+  @Parameterized.Parameters(name = "format = {0}, vectorized = {1}")
   public static Object[][] parameters() {
     return new Object[][] {
-        new Object[] { "parquet", false },
-        new Object[] { "parquet", true },
-        new Object[] { "avro", false },
-        new Object[] { "orc", false },
-        new Object[] { "orc", true },
+        { "parquet", false },
+        { "parquet", true },
+        { "avro", false },
+        { "orc", false },
+        { "orc", true }
     };
   }