This is an automated email from the ASF dual-hosted git repository.
aokolnychyi 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 180fa7b Spark: Don't set parquet-enabled in IcebergSource default
catalog (#2432)
180fa7b is described below
commit 180fa7b4b4e4ea60caf4bddbc4c995d84c66c302
Author: Ryan Murray <[email protected]>
AuthorDate: Wed Apr 7 19:47:16 2021 +0200
Spark: Don't set parquet-enabled in IcebergSource default catalog (#2432)
---
spark3/src/main/java/org/apache/iceberg/spark/source/IcebergSource.java | 1 -
1 file changed, 1 deletion(-)
diff --git
a/spark3/src/main/java/org/apache/iceberg/spark/source/IcebergSource.java
b/spark3/src/main/java/org/apache/iceberg/spark/source/IcebergSource.java
index a8a4267..98fcc0e 100644
--- a/spark3/src/main/java/org/apache/iceberg/spark/source/IcebergSource.java
+++ b/spark3/src/main/java/org/apache/iceberg/spark/source/IcebergSource.java
@@ -139,7 +139,6 @@ public class IcebergSource implements DataSourceRegister,
SupportsCatalogOptions
ImmutableMap<String, String> config = ImmutableMap.of(
"type", "hive",
"default-namespace", "default",
- "parquet-enabled", "true",
"cache-enabled", "false" // the source should not use a cache
);
String catalogName = "org.apache.iceberg.spark.SparkCatalog";