We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec2bad6 commit c93dd04Copy full SHA for c93dd04
1 file changed
xtable-service/src/test/java/org/apache/xtable/service/ITConversionService.java
@@ -54,6 +54,7 @@
54
import org.junit.jupiter.params.provider.Arguments;
55
import org.junit.jupiter.params.provider.MethodSource;
56
57
+import org.apache.hudi.client.HoodieReadClient;
58
import org.apache.hudi.common.config.HoodieMetadataConfig;
59
60
import org.apache.xtable.GenericTable;
@@ -84,7 +85,8 @@ public static void setupOnce() {
84
85
Files.createDirectories(basePath);
86
87
SparkConf sparkConf = HudiTestUtil.getSparkConf(tempDir);
- sparkSession = SparkSession.builder().config(sparkConf).getOrCreate();
88
+ sparkSession =
89
+ SparkSession.builder().config(HoodieReadClient.addHoodieSupport(sparkConf)).getOrCreate();
90
sparkSession
91
.sparkContext()
92
.hadoopConfiguration()
0 commit comments