Files
doris/regression-test
shuke f58fa4d3fa [regression-test](test) fix mv_p0/test_drop_partition_from_index/test_drop_partition_from_index.groovy #20689
finally {
sql """ DROP MATERIALIZED VIEW ${testMv} ON ${testTable} """
sql """ DROP TABLE ${testTable} """
sql """ DROP DATABASE ${testDb} """
}

in this case, there maybe some error before create materialized view. so when they failed, drop materialized view will be executed, but it does not created at that time. This will cause another exception, and the real failure will be hiden by regression-test.
2023-06-14 15:38:16 +08:00
..