Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
Lchangliang committed Aug 1, 2024
1 parent 730cbc9 commit 130c04e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ CREATE TABLE IF NOT EXISTS `date` (
)
DISTRIBUTED BY HASH(`d_datekey`) BUCKETS 1
PROPERTIES (
"replication_num" = "1"
"replication_num" = "1",
"disable_auto_compaction" = "true"
);
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ DISTRIBUTED BY HASH(`d_datekey`) BUCKETS 1
PROPERTIES (
"replication_num" = "1",
"enable_unique_key_merge_on_write" = "true",
"enable_mow_light_delete" = "true"
"enable_mow_light_delete" = "true",
"disable_auto_compaction" = "true"
);

0 comments on commit 130c04e

Please sign in to comment.