mirror of https://github.com/apache/nifi.git
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:
parent
d2fdff7b93
commit
588e0d74ab
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue