Skip to content

Commit a1e192f

Browse files
committed
add back hudi
1 parent 4b87212 commit a1e192f

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

xtable-api/src/main/java/org/apache/xtable/model/storage/TableFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ public class TableFormat {
2929
public static final String DELTA = "DELTA";
3030

3131
public static String[] values() {
32-
return new String[] {"ICEBERG", "DELTA"};
32+
return new String[] {"DELTA", "ICEBERG", "HUDI"};
3333
}
3434
}

xtable-service/pom.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,25 @@
171171
<dependency>
172172
<groupId>org.apache.iceberg</groupId>
173173
<artifactId>iceberg-spark-runtime-3.4_2.12</artifactId>
174-
<version>1.4.2</version>
174+
<version>${iceberg.version}</version>
175+
<scope>test</scope>
176+
</dependency>
177+
178+
<dependency>
179+
<groupId>org.apache.parquet</groupId>
180+
<artifactId>parquet-avro</artifactId>
181+
<version>${parquet.version}</version>
182+
</dependency>
183+
184+
<dependency>
185+
<groupId>org.apache.avro</groupId>
186+
<artifactId>avro</artifactId>
187+
<version>${avro.version}</version>
188+
</dependency>
189+
190+
<dependency>
191+
<groupId>org.apache.hudi</groupId>
192+
<artifactId>hudi-spark${spark.version.prefix}-bundle_${scala.binary.version}</artifactId>
175193
<scope>test</scope>
176194
</dependency>
177195

0 commit comments

Comments
 (0)