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 313b8c054b1 [fix](test) Fix some recycler cases (#55965)
313b8c054b1 is described below
commit 313b8c054b161b66b0f756dffd796b5f5b0562c4
Author: Uniqueyou <[email protected]>
AuthorDate: Sat Sep 13 12:25:16 2025 +0800
[fix](test) Fix some recycler cases (#55965)
---
.../suites/cloud_p0/recycler/test_recycler_with_drop_column.groovy | 2 +-
.../suites/cloud_p0/recycler/test_recycler_with_drop_index.groovy | 2 +-
.../suites/cloud_p0/recycler/test_recycler_with_drop_mv.groovy | 4 ++--
.../suites/cloud_p0/recycler/test_recycler_with_drop_rollup.groovy | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git
a/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_column.groovy
b/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_column.groovy
index 1e733eeb4af..aed1c3b3c4c 100644
---
a/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_column.groovy
+++
b/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_column.groovy
@@ -35,7 +35,7 @@ suite("test_recycler_with_drop_column") {
C_ADDRESS VARCHAR(40) NOT NULL,
C_NATIONKEY INTEGER NOT NULL,
C_PHONE CHAR(15) NOT NULL,
- C_ACCTBAL DECIMAL(15,2) NOT NULL,
+ C_ACCTBAL DECIMALV3(15,2) NOT NULL,
C_MKTSEGMENT CHAR(10) NOT NULL,
C_COMMENT VARCHAR(117) NOT NULL
)
diff --git
a/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_index.groovy
b/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_index.groovy
index f143eb549cb..1992bd79cbd 100644
---
a/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_index.groovy
+++
b/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_index.groovy
@@ -71,7 +71,7 @@ suite("test_recycler_with_drop_index") {
return jobStateResult[0][8]
}
- sql "CREATE materialized VIEW ${mvName} AS SELECT lo_orderkey,
lo_linenumber FROM ${tableName};"
+ sql "CREATE materialized VIEW ${mvName} AS SELECT lo_orderkey as
lo_orderkey_t, lo_linenumber as lo_linenumber_t FROM ${tableName};"
int max_try_secs = 60
while (max_try_secs--) {
String res = getJobState(tableName)
diff --git
a/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_mv.groovy
b/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_mv.groovy
index c3e1dd4ce6b..a35aa6ba74f 100644
--- a/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_mv.groovy
+++ b/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_mv.groovy
@@ -35,7 +35,7 @@ suite("test_recycler_with_drop_mv") {
C_ADDRESS VARCHAR(40) NOT NULL,
C_NATIONKEY INTEGER NOT NULL,
C_PHONE CHAR(15) NOT NULL,
- C_ACCTBAL DECIMAL(15,2) NOT NULL,
+ C_ACCTBAL DECIMALV3(15,2) NOT NULL,
C_MKTSEGMENT CHAR(10) NOT NULL,
C_COMMENT VARCHAR(117) NOT NULL
)
@@ -80,7 +80,7 @@ suite("test_recycler_with_drop_mv") {
logger.info("tabletIdSet1:${tabletIdSet1}")
assertTrue(tabletIdSet1.size() > 0)
- sql "create materialized view ${mvName} as select C_CUSTKEY, C_ADDRESS
from ${tableName};"
+ sql "create materialized view ${mvName} as select C_CUSTKEY as
C_CUSTKEY_T, C_ADDRESS as C_ADDRESS_T from ${tableName};"
waitMvJobFinished(tableName)
String[][] tabletInfoList2 = sql """ show tablets from ${tableName}; """
diff --git
a/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_rollup.groovy
b/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_rollup.groovy
index cfbc6664d71..4d7261d4d85 100644
---
a/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_rollup.groovy
+++
b/regression-test/suites/cloud_p0/recycler/test_recycler_with_drop_rollup.groovy
@@ -35,7 +35,7 @@ suite("test_recycler_with_drop_rollup") {
C_ADDRESS VARCHAR(40) NOT NULL,
C_NATIONKEY INTEGER NOT NULL,
C_PHONE CHAR(15) NOT NULL,
- C_ACCTBAL DECIMAL(15,2) NOT NULL,
+ C_ACCTBAL DECIMALV3(15,2) NOT NULL,
C_MKTSEGMENT CHAR(10) NOT NULL,
C_COMMENT VARCHAR(117) NOT NULL
)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]