This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit fe744a539a2831d0ec803e8b059c4e2e3efc9a59 Author: Dongyang Li <[email protected]> AuthorDate: Wed Aug 9 13:15:50 2023 +0800 [fix](case) if enable_feature_binlog=false in frontend config, no nee… (#22692) if enable_feature_binlog=false in frontend config, no nee… --- .../suites/schema_change/test_alter_database_property.groovy | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/regression-test/suites/schema_change/test_alter_database_property.groovy b/regression-test/suites/schema_change/test_alter_database_property.groovy index 8d44f29aac..3163b42787 100644 --- a/regression-test/suites/schema_change/test_alter_database_property.groovy +++ b/regression-test/suites/schema_change/test_alter_database_property.groovy @@ -16,6 +16,13 @@ // under the License. suite("test_alter_database_property") { + def ret = sql "ADMIN SHOW FRONTEND CONFIG like '%enable_feature_binlog%';" + logger.info("${ret}") + if (ret.size() != 0 && ret[0].size() > 1 && ret[0][1] == 'false') { + logger.info("enable_feature_binlog=false in frontend config, no need to run this case.") + return + } + sql "drop database if exists test_alter_database_property" sql """ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
