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 f91c1638a3c79362143d08a555803509aa348a84
Author: Chenyang Sun <csun5...@gmail.com>
AuthorDate: Thu Aug 3 15:24:17 2023 +0800

    [fix](regression] fix test_table_level_compaction_policy
    
    [fix](regression] fix test_table_level_compaction_policy
---
 .../suites/compaction/test_table_level_compaction_policy.groovy         | 2 +-
 .../suites/schema_change/test_alter_database_property.groovy            | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/regression-test/suites/compaction/test_table_level_compaction_policy.groovy 
b/regression-test/suites/compaction/test_table_level_compaction_policy.groovy
index 838d8b34dc..b0cf907a88 100644
--- 
a/regression-test/suites/compaction/test_table_level_compaction_policy.groovy
+++ 
b/regression-test/suites/compaction/test_table_level_compaction_policy.groovy
@@ -38,7 +38,7 @@ suite("test_table_level_compaction_policy") {
                     "time_series_compaction_time_threshold_seconds" = "86400"
              );
         """
-    result = sql """show create table ${tableName}"""
+    def result = sql """show create table ${tableName}"""
     logger.info("${result}")
     assertTrue(result.toString().containsIgnoreCase('"compaction_policy" = 
"time_series"'))
     
assertTrue(result.toString().containsIgnoreCase('"time_series_compaction_goal_size_mbytes"
 = "2048"'))
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 4d89d973f3..8d44f29aac 100644
--- a/regression-test/suites/schema_change/test_alter_database_property.groovy
+++ b/regression-test/suites/schema_change/test_alter_database_property.groovy
@@ -21,7 +21,7 @@ suite("test_alter_database_property") {
     sql """
         create database test_alter_database_property
         """
-    result = sql "show create database test_alter_database_property"
+    def result = sql "show create database test_alter_database_property"
     logger.info("${result}")
 
     // Case 1: alter database, set binlog enable is true


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to