diff --git a/test/sql/test_fast_schema_evolution/R/test_fast_schema_evolution b/test/sql/test_fast_schema_evolution/R/test_fast_schema_evolution index cd852be265ef98..99c3b94066f3b5 100644 --- a/test/sql/test_fast_schema_evolution/R/test_fast_schema_evolution +++ b/test/sql/test_fast_schema_evolution/R/test_fast_schema_evolution @@ -847,12 +847,10 @@ tab1 CREATE TABLE `tab1` ( DUPLICATE KEY(`k1`, `k2`) DISTRIBUTED BY HASH(`k1`) BUCKETS 1 PROPERTIES ( -"replication_num" = "1", -"in_memory" = "false", -"enable_persistent_index" = "false", -"replicated_storage" = "true", +"compression" = "LZ4", "fast_schema_evolution" = "true", -"compression" = "LZ4" +"replicated_storage" = "true", +"replication_num" = "1" ); -- !result alter table tab1 set ("fast_schema_evolution" = "false"); @@ -872,11 +870,9 @@ tab1 CREATE TABLE `tab1` ( DUPLICATE KEY(`k1`, `k2`) DISTRIBUTED BY HASH(`k1`) BUCKETS 1 PROPERTIES ( -"replication_num" = "1", -"in_memory" = "false", -"enable_persistent_index" = "false", +"compression" = "LZ4", "replicated_storage" = "true", -"compression" = "LZ4" +"replication_num" = "1" ); -- !result alter table tab1 set ("fast_schema_evolution" = "true"); @@ -896,12 +892,10 @@ tab1 CREATE TABLE `tab1` ( DUPLICATE KEY(`k1`, `k2`) DISTRIBUTED BY HASH(`k1`) BUCKETS 1 PROPERTIES ( -"replication_num" = "1", -"in_memory" = "false", -"enable_persistent_index" = "false", -"replicated_storage" = "true", +"compression" = "LZ4", "fast_schema_evolution" = "true", -"compression" = "LZ4" +"replicated_storage" = "true", +"replication_num" = "1" ); -- !result drop table tab1; @@ -909,4 +903,4 @@ drop table tab1; -- !result drop database test_alter_fast_schema_evolution; -- result: --- !result +-- !result \ No newline at end of file