diff --git a/test/sql/test_materialized_view/R/test_mv_swap b/test/sql/test_materialized_view/R/test_mv_swap index ffb1623fecdfc..abbfb5af9ddb2 100644 --- a/test/sql/test_materialized_view/R/test_mv_swap +++ b/test/sql/test_materialized_view/R/test_mv_swap @@ -1,4 +1,7 @@ --- name: test_mv_swap +-- name: test_mv_swap @sequential +admin set frontend config('enable_mv_automatic_active_check'='false'); +-- result: +-- !result create database db_${uuid0}; -- result: -- !result @@ -177,4 +180,7 @@ true -- !result [UC]drop database db_${uuid0} force; -- result: +-- !result +admin set frontend config('enable_mv_automatic_active_check'='true'); +-- result: -- !result \ No newline at end of file diff --git a/test/sql/test_materialized_view/T/test_mv_swap b/test/sql/test_materialized_view/T/test_mv_swap index bb28d3b89ee2f..c2c48d9307514 100644 --- a/test/sql/test_materialized_view/T/test_mv_swap +++ b/test/sql/test_materialized_view/T/test_mv_swap @@ -1,4 +1,6 @@ --- name: test_mv_swap +-- name: test_mv_swap @sequential + +admin set frontend config('enable_mv_automatic_active_check'='false'); create database db_${uuid0}; use db_${uuid0}; @@ -73,4 +75,6 @@ SELECT IS_ACTIVE, INACTIVE_REASON FROM information_schema.materialized_views WHE ALTER MATERIALIZED VIEW mv_on_table_1 ACTIVE; SELECT IS_ACTIVE, INACTIVE_REASON FROM information_schema.materialized_views WHERE table_name = 'mv_on_table_1'; -[UC]drop database db_${uuid0} force; \ No newline at end of file +[UC]drop database db_${uuid0} force; + +admin set frontend config('enable_mv_automatic_active_check'='true'); \ No newline at end of file