This is an automated email from the ASF dual-hosted git repository.

panxiaolei 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 31a4d6059e [fix](case) if enable_feature_binlog=false in frontend 
config, no nee… (#22692)
31a4d6059e is described below

commit 31a4d6059e116625c48453b72150bf3f71a9c7d4
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]

Reply via email to