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 be0e627c7ca [Fix](regression) fix unstable case
`test_schema_change_unique_mow` (#39315)
be0e627c7ca is described below
commit be0e627c7cac6cd08e4e774d44b5c99524ef7582
Author: bobhan1 <[email protected]>
AuthorDate: Thu Aug 15 20:14:01 2024 +0800
[Fix](regression) fix unstable case `test_schema_change_unique_mow` (#39315)
## Proposed changes
---
.../suites/schema_change_p0/test_schema_change_unique_mow.groovy | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/regression-test/suites/schema_change_p0/test_schema_change_unique_mow.groovy
b/regression-test/suites/schema_change_p0/test_schema_change_unique_mow.groovy
index 6bf9c79372e..1219de31852 100644
---
a/regression-test/suites/schema_change_p0/test_schema_change_unique_mow.groovy
+++
b/regression-test/suites/schema_change_p0/test_schema_change_unique_mow.groovy
@@ -100,7 +100,7 @@ suite("test_schema_change_unique_mow", "p0") {
sql """ alter table ${tableName3} modify column k4 string NULL"""
- Awaitility.await().atMost(12, TimeUnit.SECONDS).pollDelay(10,
TimeUnit.MILLISECONDS).pollInterval(10, TimeUnit.MILLISECONDS).until(
+ Awaitility.await().atMost(30, TimeUnit.SECONDS).pollDelay(10,
TimeUnit.MILLISECONDS).pollInterval(10, TimeUnit.MILLISECONDS).until(
{
String res = getJobState(tableName3)
if (res == "FINISHED" || res == "CANCELLED") {
@@ -113,7 +113,7 @@ suite("test_schema_change_unique_mow", "p0") {
)
sql """ alter table ${tableName3} modify column k2 bigint(11) key NULL"""
- Awaitility.await().atMost(12, TimeUnit.SECONDS).pollDelay(10,
TimeUnit.MILLISECONDS).pollInterval(10, TimeUnit.MILLISECONDS).until(
+ Awaitility.await().atMost(30, TimeUnit.SECONDS).pollDelay(10,
TimeUnit.MILLISECONDS).pollInterval(10, TimeUnit.MILLISECONDS).until(
{
String res = getJobState(tableName3)
if (res == "FINISHED" || res == "CANCELLED") {
@@ -146,7 +146,7 @@ suite("test_schema_change_unique_mow", "p0") {
*/
sql """ alter table ${tableName3} modify column k5 string NULL"""
- Awaitility.await().atMost(12, TimeUnit.SECONDS).pollDelay(10,
TimeUnit.MILLISECONDS).pollInterval(10, TimeUnit.MILLISECONDS).until(
+ Awaitility.await().atMost(30, TimeUnit.SECONDS).pollDelay(10,
TimeUnit.MILLISECONDS).pollInterval(10, TimeUnit.MILLISECONDS).until(
{
String res = getJobState(tableName3)
if (res == "FINISHED" || res == "CANCELLED") {
@@ -165,7 +165,7 @@ suite("test_schema_change_unique_mow", "p0") {
sql """ alter table ${tableName3} modify column v14 int NULL default "1"
"""
int cnt = 6000
- Awaitility.await().atMost(20, TimeUnit.SECONDS).pollDelay(10,
TimeUnit.MILLISECONDS).pollInterval(10, TimeUnit.MILLISECONDS).until(
+ Awaitility.await().atMost(30, TimeUnit.SECONDS).pollDelay(10,
TimeUnit.MILLISECONDS).pollInterval(10, TimeUnit.MILLISECONDS).until(
{
String res = getJobState(tableName3)
if (res == "FINISHED" || res == "CANCELLED") {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]