Skip to content

Commit

Permalink
update sql
Browse files Browse the repository at this point in the history
Signed-off-by: zhangqiang <[email protected]>
  • Loading branch information
sevev committed Apr 11, 2024
1 parent 4d34da9 commit a761cf0
Showing 1 changed file with 9 additions and 15 deletions.
24 changes: 9 additions & 15 deletions test/sql/test_fast_schema_evolution/R/test_fast_schema_evolution
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand All @@ -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");
Expand All @@ -896,17 +892,15 @@ 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;
-- result:
-- !result
drop database test_alter_fast_schema_evolution;
-- result:
-- !result
-- !result

0 comments on commit a761cf0

Please sign in to comment.