Skip to content

Commit f90f0de

Browse files
authored
branch-4.1:[fix](case)fix maxcompute p2 case. (#62421)
### What problem does this PR solve? Problem Summary: just fix case. ### 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: apache/doris-website#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 -->
1 parent bbf5022 commit f90f0de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

regression-test/suites/external_table_p2/maxcompute/write/test_mc_write_ctas.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ suite("test_mc_write_ctas", "p2,external,maxcompute,external_remote,external_rem
4444

4545
def uuid = UUID.randomUUID().toString().replace("-", "").substring(0, 8)
4646
String db = "mc_write_ctas_${uuid}"
47+
String internal_db = "mc_ctas_internal_${uuid}"
48+
String internal_tb = "ctas_internal_src_${uuid}"
4749

4850
sql """drop database if exists ${db}"""
4951
sql """create database ${db}"""
@@ -99,8 +101,6 @@ suite("test_mc_write_ctas", "p2,external,maxcompute,external_remote,external_rem
99101
order_qt_ctas_agg """ SELECT * FROM ${tb5} """
100102

101103
// Test 6: CTAS from internal catalog (cross-catalog)
102-
String internal_db = "mc_ctas_internal_${uuid}"
103-
String internal_tb = "ctas_internal_src_${uuid}"
104104
sql """CREATE DATABASE IF NOT EXISTS internal.${internal_db}"""
105105
sql """DROP TABLE IF EXISTS internal.${internal_db}.${internal_tb}"""
106106
sql """

0 commit comments

Comments
 (0)