This is an automated email from the ASF dual-hosted git repository.
zhangchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new a7341bb28b4 [fix](cluster key) add some debug log in case (#42704)
a7341bb28b4 is described below
commit a7341bb28b46653064dac2e1c806f7582bcc7706
Author: meiyi <[email protected]>
AuthorDate: Tue Oct 29 21:41:26 2024 +0800
[fix](cluster key) add some debug log in case (#42704)
add some debug log in case
---
.../partial_update/test_new_partial_update_delete.groovy | 2 ++
.../partial_update/test_partial_update_delete.groovy | 3 +++
2 files changed, 5 insertions(+)
diff --git
a/regression-test/suites/unique_with_mow_c_p0/partial_update/test_new_partial_update_delete.groovy
b/regression-test/suites/unique_with_mow_c_p0/partial_update/test_new_partial_update_delete.groovy
index 99983dde6df..8c338f6aa03 100644
---
a/regression-test/suites/unique_with_mow_c_p0/partial_update/test_new_partial_update_delete.groovy
+++
b/regression-test/suites/unique_with_mow_c_p0/partial_update/test_new_partial_update_delete.groovy
@@ -90,6 +90,7 @@ suite('test_new_partial_update_delete') {
"store_row_column" = "${use_row_store}"); """
def output1 = sql "show create table ${tableName1}"
+ logger.info("output1: ${output1}")
assertTrue output1[0][1].contains("\"enable_mow_light_delete\" =
\"false\"");
sql "insert into ${tableName1} values(1,1,1,1,1)"
// 1,1,1,1,1
@@ -113,6 +114,7 @@ suite('test_new_partial_update_delete') {
sql "set enable_unique_key_partial_update=false;"
sql "set enable_insert_strict=true;"
def output2 = sql "show create table ${tableName1}"
+ logger.info("output2: ${output2}")
assertTrue output2[0][1].contains("\"enable_mow_light_delete\" =
\"true\"");
sql "insert into ${tableName1} values(2,2,2,2,2)"
// 1,2,NULL,NULL,NULL
diff --git
a/regression-test/suites/unique_with_mow_c_p0/partial_update/test_partial_update_delete.groovy
b/regression-test/suites/unique_with_mow_c_p0/partial_update/test_partial_update_delete.groovy
index 67aa6aa2f13..6850faf2dd9 100644
---
a/regression-test/suites/unique_with_mow_c_p0/partial_update/test_partial_update_delete.groovy
+++
b/regression-test/suites/unique_with_mow_c_p0/partial_update/test_partial_update_delete.groovy
@@ -54,6 +54,9 @@ suite('test_partial_update_delete') {
"disable_auto_compaction" = "true",
"replication_num" = "1",
"store_row_column" = "${use_row_store}"); """
+
+ def res = sql """ show create table ${tableName2}"""
+ logger.info("show: " + res)
sql "insert into ${tableName1}
values(1,1,1,1,1),(2,2,2,2,2),(3,3,3,3,3),(4,4,4,4,4),(5,5,5,5,5);"
qt_sql "select * from ${tableName1} order by k1;"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]