ygerzhedovich commented on code in PR #4599: URL: https://github.com/apache/ignite-3/pull/4599#discussion_r1808937471
########## modules/catalog/src/integrationTest/java/org/apache/ignite/internal/catalog/it/ItConcurrentDdlsTest.java: ########## @@ -62,7 +62,7 @@ private void createTablesInParallel() { String tableName = "TEST" + n; node(0).sql().executeScript( - "CREATE TABLE " + tableName + " (id INT PRIMARY KEY, val VARCHAR) WITH primary_zone='" + ZONE_NAME + "'" + "CREATE TABLE " + tableName + " (id INT PRIMARY KEY, val VARCHAR) zone " + ZONE_NAME Review Comment: fixed ########## modules/runner/src/integrationTest/java/org/apache/ignite/internal/benchmark/AbstractMultiNodeBenchmark.java: ########## @@ -132,7 +132,7 @@ protected static void createTable(String tableName, List<String> columns, List<S createTableStatement += "\nCOLOCATE BY (" + String.join(", ", colocationKeys) + ")"; } - createTableStatement += "\nWITH primary_zone='" + ZONE_NAME + "'"; + createTableStatement += "\nzone " + ZONE_NAME; Review Comment: fixed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org