[fix](regression) unique_with_mow_p2/test_pk_uk_case (#20497)

This commit is contained in:
zhannngchen
2023-06-07 21:34:34 +08:00
committed by GitHub
parent 296ca1d9dd
commit 53970192aa
3 changed files with 7 additions and 16 deletions

View File

@ -93,7 +93,8 @@ suite("test_pk_uk_case", "inverted_index") {
UNIQUE KEY(L_ORDERKEY, L_PARTKEY, L_SUPPKEY, L_LINENUMBER)
DISTRIBUTED BY HASH(L_ORDERKEY) BUCKETS 1
PROPERTIES (
"replication_num" = "1"
"replication_num" = "1",
"enable_unique_key_merge_on_write" = "false"
)
"""
@ -212,8 +213,6 @@ suite("test_pk_uk_case", "inverted_index") {
count(*) AS count_order
FROM
${tableNamePk}
WHERE
l_shipdate <= DATE '2023-01-01' - INTERVAL '90' DAY
GROUP BY
l_returnflag,
l_linestatus
@ -234,8 +233,6 @@ suite("test_pk_uk_case", "inverted_index") {
count(*) AS count_order
FROM
${tableNameUk}
WHERE
l_shipdate <= DATE '2023-01-01' - INTERVAL '90' DAY
GROUP BY
l_returnflag,
l_linestatus

View File

@ -86,8 +86,9 @@ suite("test_pk_uk_case") {
UNIQUE KEY(L_ORDERKEY, L_PARTKEY, L_SUPPKEY, L_LINENUMBER)
DISTRIBUTED BY HASH(L_ORDERKEY) BUCKETS 1
PROPERTIES (
"replication_num" = "1"
)
"replication_num" = "1",
"enable_unique_key_merge_on_write" = "false"
)
"""
Random rd = new Random()
@ -205,8 +206,6 @@ suite("test_pk_uk_case") {
count(*) AS count_order
FROM
${tableNamePk}
WHERE
l_shipdate <= DATE '2023-01-01' - INTERVAL '90' DAY
GROUP BY
l_returnflag,
l_linestatus
@ -227,8 +226,6 @@ suite("test_pk_uk_case") {
count(*) AS count_order
FROM
${tableNameUk}
WHERE
l_shipdate <= DATE '2023-01-01' - INTERVAL '90' DAY
GROUP BY
l_returnflag,
l_linestatus

View File

@ -86,7 +86,8 @@ suite("test_pk_uk_case") {
UNIQUE KEY(L_ORDERKEY, L_PARTKEY, L_SUPPKEY, L_LINENUMBER)
DISTRIBUTED BY HASH(L_ORDERKEY) BUCKETS 1
PROPERTIES (
"replication_num" = "1"
"replication_num" = "1",
"enable_unique_key_merge_on_write" = "false"
)
"""
@ -205,8 +206,6 @@ suite("test_pk_uk_case") {
count(*) AS count_order
FROM
${tableNamePk}
WHERE
l_shipdate <= DATE '2023-01-01' - INTERVAL '90' DAY
GROUP BY
l_returnflag,
l_linestatus
@ -227,8 +226,6 @@ suite("test_pk_uk_case") {
count(*) AS count_order
FROM
${tableNameUk}
WHERE
l_shipdate <= DATE '2023-01-01' - INTERVAL '90' DAY
GROUP BY
l_returnflag,
l_linestatus