In doris regression-test/suites, a lot of test cases quit immediately only if "FINISHED", otherwise they will wait till timeout. For example:
while (max_try_secs--) {
String res = getJobState(tbName1)
if (res == "FINISHED") {
sleep(3000)
break
} else {
Thread.sleep(1000)
if (max_try_secs < 1) {
println "test timeout," + "state:" + res
assertEquals("FINISHED", res)
}
}
}
This PR added checks so that these test cases can quit immediately also if "CANCELLED", which is the only unchanging status other than "FINISHED".
70 lines
2.6 KiB
Groovy
70 lines
2.6 KiB
Groovy
// Licensed to the Apache Software Foundation (ASF) under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you under the Apache License, Version 2.0 (the
|
|
// "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing,
|
|
// software distributed under the License is distributed on an
|
|
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
// KIND, either express or implied. See the License for the
|
|
// specific language governing permissions and limitations
|
|
// under the License.
|
|
suite("test_materialized_view_bitmap", "rollup") {
|
|
|
|
// because nereids cannot support rollup correctly forbid it temporary
|
|
sql """set enable_nereids_planner=false"""
|
|
|
|
def tbName1 = "test_materialized_view_bitmap"
|
|
|
|
def getJobState = { tableName ->
|
|
def jobStateResult = sql """ SHOW ALTER TABLE MATERIALIZED VIEW WHERE TableName='${tableName}' ORDER BY CreateTime DESC LIMIT 1; """
|
|
return jobStateResult[0][8]
|
|
}
|
|
sql "DROP TABLE IF EXISTS ${tbName1}"
|
|
sql """
|
|
CREATE TABLE IF NOT EXISTS ${tbName1}(
|
|
k1 BOOLEAN NOT NULL,
|
|
k2 TINYINT NOT NULL,
|
|
k3 SMALLINT NOT NULL
|
|
)
|
|
DISTRIBUTED BY HASH(k1) properties("replication_num" = "1");
|
|
"""
|
|
|
|
sql "CREATE MATERIALIZED VIEW test_neg as select k1,bitmap_union(to_bitmap(k2)), bitmap_union(to_bitmap(k3)) FROM ${tbName1} GROUP BY k1;"
|
|
max_try_secs = 60
|
|
while (max_try_secs--) {
|
|
String res = getJobState(tbName1)
|
|
if (res == "FINISHED" || res == "CANCELLED") {
|
|
assertEquals("FINISHED", res)
|
|
sleep(3000)
|
|
break
|
|
} else {
|
|
Thread.sleep(2000)
|
|
if (max_try_secs < 1) {
|
|
println "test timeout," + "state:" + res
|
|
assertEquals("FINISHED",res)
|
|
}
|
|
}
|
|
}
|
|
|
|
explain {
|
|
sql "insert into ${tbName1} values(1,1,1);"
|
|
contains "to_bitmap_with_check"
|
|
}
|
|
sql "insert into ${tbName1} values(1,1,1);"
|
|
sql "insert into ${tbName1} values(0,1,1);"
|
|
|
|
test {
|
|
sql "insert into ${tbName1} values(1,-1,-1);"
|
|
// check exception message contains
|
|
exception "The input: -1 is not valid, to_bitmap only support bigint value from 0 to 18446744073709551615 currently"
|
|
}
|
|
|
|
sql "DROP TABLE ${tbName1} FORCE;"
|
|
}
|