[HUDI-1826] Add ORC support in HoodieSnapshotExporter (#3130)
This commit is contained in:
@@ -32,7 +32,7 @@ import static org.junit.jupiter.api.Assertions.assertThrows;
|
||||
public class TestHoodieSnapshotExporter {
|
||||
|
||||
@ParameterizedTest
|
||||
@ValueSource(strings = {"json", "parquet", "hudi"})
|
||||
@ValueSource(strings = {"json", "parquet", "orc", "hudi"})
|
||||
public void testValidateOutputFormatWithValidFormat(String format) {
|
||||
assertDoesNotThrow(() -> {
|
||||
new OutputFormatValidator().validate(null, format);
|
||||
|
||||
@@ -213,7 +213,7 @@ public class TestHoodieSnapshotExporter extends FunctionalTestHarness {
|
||||
public class TestHoodieSnapshotExporterForNonHudi {
|
||||
|
||||
@ParameterizedTest
|
||||
@ValueSource(strings = {"json", "parquet"})
|
||||
@ValueSource(strings = {"json", "parquet", "orc"})
|
||||
public void testExportAsNonHudi(String format) throws IOException {
|
||||
HoodieSnapshotExporter.Config cfg = new Config();
|
||||
cfg.sourceBasePath = sourcePath;
|
||||
|
||||
Reference in New Issue
Block a user