This is an automated email from the ASF dual-hosted git repository.
cambyzju 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 8a31fb21591 [fix](regression) fix test_alter_column_comment case
failed in 3 FE environment (#51655)
8a31fb21591 is described below
commit 8a31fb215910f7df752974125072460b3b88e8a0
Author: camby <[email protected]>
AuthorDate: Fri Jun 13 09:49:33 2025 +0800
[fix](regression) fix test_alter_column_comment case failed in 3 FE
environment (#51655)
### What problem does this PR solve?
come from https://github.com/apache/doris/pull/49989
### Release note
None
### Check List (For Author)
- Test <!-- At least one of them must be included. -->
- [ ] Regression test
- [ ] Unit Test
- [ ] Manual test (add detailed scripts or steps below)
- [ ] No need to test or manual test. Explain why:
- [ ] This is a refactor/code format and no logic has been changed.
- [ ] Previous test can cover this change.
- [ ] No code files have been changed.
- [ ] Other reason <!-- Add your reason? -->
- Behavior changed:
- [ ] No.
- [ ] Yes. <!-- Explain the behavior change -->
- Does this need documentation?
- [ ] No.
- [ ] Yes. <!-- Add document PR link here. eg:
https://github.com/apache/doris-website/pull/1214 -->
### Check List (For Reviewer who merge this PR)
- [ ] Confirm the release note
- [ ] Confirm test cases
- [ ] Confirm document
- [ ] Add branch pick label <!-- Add branch pick label that this PR
should merge into -->
---
regression-test/suites/alter_p0/test_alter_column_comment.groovy | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/regression-test/suites/alter_p0/test_alter_column_comment.groovy
b/regression-test/suites/alter_p0/test_alter_column_comment.groovy
index b86f5718272..2e9d648288b 100644
--- a/regression-test/suites/alter_p0/test_alter_column_comment.groovy
+++ b/regression-test/suites/alter_p0/test_alter_column_comment.groovy
@@ -19,7 +19,7 @@ suite('test_alter_column_comment', 'nonConcurrent') {
def tbl = 'test_alter_column_comment_tbl'
def cmt =
'0123456789012345678901234567890123456789012345678901234567890123456789'
- sql "ADMIN SET FRONTEND CONFIG ('column_comment_length_limit' = '64')"
+ sql "ADMIN SET ALL FRONTENDS CONFIG ('column_comment_length_limit' = '64')"
sql "DROP TABLE IF EXISTS ${tbl} FORCE"
@@ -101,5 +101,5 @@ suite('test_alter_column_comment', 'nonConcurrent') {
sql "DROP TABLE IF EXISTS ${tbl} FORCE"
// restore column_comment_length_limit
- sql """ ADMIN SET FRONTEND CONFIG ("column_comment_length_limit" = "-1");
"""
+ sql """ ADMIN SET ALL FRONTENDS CONFIG ("column_comment_length_limit" =
"-1"); """
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]