This is an automated email from the ASF dual-hosted git repository. dataroaring 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 5a37b92ea54 [fix](case) ignore case disable light_schema_change in cloud mode (#33067) 5a37b92ea54 is described below commit 5a37b92ea54e622854b839091e457bff9babebad Author: Yongqiang YANG <98214048+dataroar...@users.noreply.github.com> AuthorDate: Sat Mar 30 23:39:15 2024 +0800 [fix](case) ignore case disable light_schema_change in cloud mode (#33067) --- .../pipeline/cloud_p1/conf/regression-conf-custom.groovy | 1 + regression-test/suites/schema_change_p0/test_rename_column.groovy | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/regression-test/pipeline/cloud_p1/conf/regression-conf-custom.groovy b/regression-test/pipeline/cloud_p1/conf/regression-conf-custom.groovy index 2cd61d23a1a..ee741731239 100644 --- a/regression-test/pipeline/cloud_p1/conf/regression-conf-custom.groovy +++ b/regression-test/pipeline/cloud_p1/conf/regression-conf-custom.groovy @@ -11,6 +11,7 @@ excludeSuites = "000_the_start_sentinel_do_not_touch," + // keep this line as th "zzz_the_end_sentinel_do_not_touch" // keep this line as the last line excludeDirectories = "000_the_start_sentinel_do_not_touch," + // keep this line as the first line + "backup_restore," + "fault_injection_p0," + "workload_manager_p1," + "zzz_the_end_sentinel_do_not_touch" // keep this line as the last line diff --git a/regression-test/suites/schema_change_p0/test_rename_column.groovy b/regression-test/suites/schema_change_p0/test_rename_column.groovy index f98191c91df..3872bc5f960 100644 --- a/regression-test/suites/schema_change_p0/test_rename_column.groovy +++ b/regression-test/suites/schema_change_p0/test_rename_column.groovy @@ -127,8 +127,10 @@ suite ("test_rename_column") { PROPERTIES ( "replication_num" = "1" , "light_schema_change" = "false") """ test { - sql """ ALTER table ${tableName} RENAME COLUMN date new_date """ - exception "not implemented" + if (!isCloudMode()) { + sql """ ALTER table ${tableName} RENAME COLUMN date new_date """ + exception "not implemented" + } } sql """ DROP TABLE ${tableName} """ --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org