Skip to content

Commit

Permalink
Update ClickHouseSinkTaskWithSchemaTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Paultagoras committed Oct 25, 2024
1 parent 6290850 commit 1566e27
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -588,10 +588,14 @@ public void schemaWithTupleOfMapsWithVariantTest() {
}
}

@Disabled("Disabled because it requires a flag on the instance.")
@Test
@SinceClickHouseVersion("24.1")
public void schemaWithNestedTupleMapArrayAndVariant() {
Assumptions.assumeFalse(isCloud, "Skip test since experimental is not available in cloud");
if (isCloud) {
LOGGER.warn("Skip test since experimental is not available in cloud");
return;
}
Map<String, String> props = createProps();
ClickHouseHelperClient chc = createClient(props);
String topic = "nested-tuple-map-array-and-variant-table-test";
Expand Down

0 comments on commit 1566e27

Please sign in to comment.