NIFI-11345 Adjusted Iceberg test to avoid expensive duplicative runs

This closes #7086

Signed-off-by: Nandor Soma Abonyi <nsabonyi@apache.org>
This commit is contained in:
exceptionfactory 2023-03-27 11:07:44 -05:00 committed by Nandor Soma Abonyi
parent d2fdff7b93
commit 588e0d74ab
No known key found for this signature in database
GPG Key ID: AFFFD8C3A1A88ED7
1 changed files with 4 additions and 4 deletions

View File

@ -129,7 +129,7 @@ public class TestPutIcebergWithHiveCatalog {
@DisabledOnOs(WINDOWS)
@ParameterizedTest
@ValueSource(strings = {"avro", "orc", "parquet"})
@ValueSource(strings = {"avro"})
public void onTriggerPartitioned(String fileFormat) throws Exception {
PartitionSpec spec = PartitionSpec.builderFor(USER_SCHEMA)
.bucket("department", 3)
@ -167,7 +167,7 @@ public class TestPutIcebergWithHiveCatalog {
@DisabledOnOs(WINDOWS)
@ParameterizedTest
@ValueSource(strings = {"avro", "orc", "parquet"})
@ValueSource(strings = {"orc"})
public void onTriggerIdentityPartitioned(String fileFormat) throws Exception {
PartitionSpec spec = PartitionSpec.builderFor(USER_SCHEMA)
.identity("department")
@ -205,7 +205,7 @@ public class TestPutIcebergWithHiveCatalog {
@DisabledOnOs(WINDOWS)
@ParameterizedTest
@ValueSource(strings = {"avro", "orc", "parquet"})
@ValueSource(strings = {"parquet"})
public void onTriggerMultiLevelIdentityPartitioned(String fileFormat) throws Exception {
PartitionSpec spec = PartitionSpec.builderFor(USER_SCHEMA)
.identity("name")
@ -248,7 +248,7 @@ public class TestPutIcebergWithHiveCatalog {
@DisabledOnOs(WINDOWS)
@ParameterizedTest
@ValueSource(strings = {"avro", "orc", "parquet"})
@ValueSource(strings = {"avro"})
public void onTriggerUnPartitioned(String fileFormat) throws Exception {
runner = TestRunners.newTestRunner(processor);
initRecordReader();