Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
Yukang-Lian committed Oct 10, 2024
1 parent a9caf05 commit e69d9f0
Show file tree
Hide file tree
Showing 21 changed files with 0 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ DUPLICATE KEY(`l_shipdate`, `l_orderkey`)
COMMENT "OLAP"
DISTRIBUTED BY HASH(`l_orderkey`) BUCKETS 96
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
);
"""
Expand Down Expand Up @@ -145,7 +144,6 @@ DUPLICATE KEY(`l_shipdate`, `l_orderkey`)
COMMENT "OLAP"
DISTRIBUTED BY HASH(`l_orderkey`) BUCKETS 96
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
);
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ DUPLICATE KEY(`l_shipdate`, `l_orderkey`)
COMMENT "OLAP"
DISTRIBUTED BY HASH(`l_orderkey`) BUCKETS 96
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
);
"""
Expand Down Expand Up @@ -162,7 +161,6 @@ DUPLICATE KEY(`l_shipdate`, `l_orderkey`)
COMMENT "OLAP"
DISTRIBUTED BY HASH(`l_orderkey`) BUCKETS 96
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
);
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ DUPLICATE KEY(`l_shipdate`, `l_orderkey`)
COMMENT "OLAP"
DISTRIBUTED BY HASH(`l_orderkey`) BUCKETS 96
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
);
"""
Expand Down Expand Up @@ -146,7 +145,6 @@ DUPLICATE KEY(`l_shipdate`, `l_orderkey`)
COMMENT "OLAP"
DISTRIBUTED BY HASH(`l_orderkey`) BUCKETS 96
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
);
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ suite("txn_insert_with_schema_change") {
DUPLICATE KEY(L_ORDERKEY, L_PARTKEY, L_SUPPKEY, L_LINENUMBER)
DISTRIBUTED BY HASH(L_ORDERKEY) BUCKETS 3
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)
"""
Expand Down
1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf100_p2/ddl/customer.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ CREATE TABLE IF NOT EXISTS customer (
DUPLICATE KEY(C_CUSTKEY, C_NAME)
DISTRIBUTED BY HASH(C_CUSTKEY) BUCKETS 32
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf100_p2/ddl/lineitem.sql
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ CREATE TABLE IF NOT EXISTS lineitem (
DUPLICATE KEY(L_ORDERKEY, L_PARTKEY, L_SUPPKEY, L_LINENUMBER)
DISTRIBUTED BY HASH(L_ORDERKEY) BUCKETS 32
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf100_p2/ddl/nation.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ CREATE TABLE IF NOT EXISTS nation (
DUPLICATE KEY(N_NATIONKEY, N_NAME)
DISTRIBUTED BY HASH(N_NATIONKEY) BUCKETS 1
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf100_p2/ddl/orders.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ CREATE TABLE IF NOT EXISTS orders (
DUPLICATE KEY(O_ORDERKEY, O_CUSTKEY)
DISTRIBUTED BY HASH(O_ORDERKEY) BUCKETS 32
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf100_p2/ddl/part.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ CREATE TABLE IF NOT EXISTS part (
DUPLICATE KEY(P_PARTKEY, P_NAME)
DISTRIBUTED BY HASH(P_PARTKEY) BUCKETS 32
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf100_p2/ddl/partsupp.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ CREATE TABLE IF NOT EXISTS partsupp (
DUPLICATE KEY(PS_PARTKEY, PS_SUPPKEY)
DISTRIBUTED BY HASH(PS_PARTKEY) BUCKETS 32
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf100_p2/ddl/region.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ CREATE TABLE IF NOT EXISTS region (
DUPLICATE KEY(R_REGIONKEY, R_NAME)
DISTRIBUTED BY HASH(R_REGIONKEY) BUCKETS 1
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf100_p2/ddl/supplier.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ CREATE TABLE IF NOT EXISTS supplier (
DUPLICATE KEY(S_SUPPKEY, S_NAME)
DISTRIBUTED BY HASH(S_SUPPKEY) BUCKETS 32
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)
1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf1_p2/ddl/create_table.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ CREATE TABLE IF NOT EXISTS gavin_test (
DUPLICATE KEY(id, name)
DISTRIBUTED BY HASH(id) BUCKETS 1
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)
1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf1_p2/ddl/customer.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ CREATE TABLE IF NOT EXISTS customer (
DUPLICATE KEY(C_CUSTKEY, C_NAME)
DISTRIBUTED BY HASH(C_CUSTKEY) BUCKETS 3
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf1_p2/ddl/lineitem.sql
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ CREATE TABLE IF NOT EXISTS lineitem (
DUPLICATE KEY(L_ORDERKEY, L_PARTKEY, L_SUPPKEY, L_LINENUMBER)
DISTRIBUTED BY HASH(L_ORDERKEY) BUCKETS 3
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf1_p2/ddl/nation.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ CREATE TABLE IF NOT EXISTS nation (
DUPLICATE KEY(N_NATIONKEY, N_NAME)
DISTRIBUTED BY HASH(N_NATIONKEY) BUCKETS 3
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf1_p2/ddl/orders.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ CREATE TABLE IF NOT EXISTS orders (
DUPLICATE KEY(O_ORDERKEY, O_CUSTKEY)
DISTRIBUTED BY HASH(O_ORDERKEY) BUCKETS 3
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf1_p2/ddl/part.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ CREATE TABLE IF NOT EXISTS part (
DUPLICATE KEY(P_PARTKEY, P_NAME)
DISTRIBUTED BY HASH(P_PARTKEY) BUCKETS 3
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf1_p2/ddl/partsupp.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ CREATE TABLE IF NOT EXISTS partsupp (
DUPLICATE KEY(PS_PARTKEY, PS_SUPPKEY)
DISTRIBUTED BY HASH(PS_PARTKEY) BUCKETS 3
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf1_p2/ddl/region.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ CREATE TABLE IF NOT EXISTS region (
DUPLICATE KEY(R_REGIONKEY, R_NAME)
DISTRIBUTED BY HASH(R_REGIONKEY) BUCKETS 3
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

1 change: 0 additions & 1 deletion regression-test/suites/tpch_sf1_p2/ddl/supplier.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ CREATE TABLE IF NOT EXISTS supplier (
DUPLICATE KEY(S_SUPPKEY, S_NAME)
DISTRIBUTED BY HASH(S_SUPPKEY) BUCKETS 3
PROPERTIES (
"enable_mow_light_delete" = "true",
"replication_num" = "1"
)

0 comments on commit e69d9f0

Please sign in to comment.