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

starocean999 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 c4c4162da2 [fix](test)rename table name to prevent conflicting with 
other test case (#24391)
c4c4162da2 is described below

commit c4c4162da2fff85a4637a925846d593feb575274
Author: starocean999 <[email protected]>
AuthorDate: Fri Sep 15 19:11:41 2023 +0800

    [fix](test)rename table name to prevent conflicting with other test case 
(#24391)
---
 regression-test/suites/correctness_p0/test_cast_null.groovy | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/regression-test/suites/correctness_p0/test_cast_null.groovy 
b/regression-test/suites/correctness_p0/test_cast_null.groovy
index c7acdddb18..368a0a1ae7 100644
--- a/regression-test/suites/correctness_p0/test_cast_null.groovy
+++ b/regression-test/suites/correctness_p0/test_cast_null.groovy
@@ -86,11 +86,11 @@ suite("test_cast_null") {
     """
 
     sql """
-        drop table if exists test_table_t1;
+        drop table if exists test_table_tabc;
     """
 
     sql """
-        CREATE TABLE `test_table_t1` (
+        CREATE TABLE `test_table_tabc` (
         `k1` DECIMAL(12, 5) NULL
         ) ENGINE=OLAP
         DUPLICATE KEY(`k1`)
@@ -105,11 +105,11 @@ suite("test_cast_null") {
         "enable_single_replica_compaction" = "false"
         );
     """
-    sql """insert into test_table_t1 values(1.0);"""
+    sql """insert into test_table_tabc values(1.0);"""
 
-    qt_sql5 """select k1 <> '' from test_table_t1;"""
+    qt_sql5 """select k1 <> '' from test_table_tabc;"""
 
     sql """
-        drop table if exists test_table_t1;
+        drop table if exists test_table_tabc;
     """
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to