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

dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-3.0 by this push:
     new 4486c6b7bcb [fix](case) remove test_rowstore_query_ck (#54917)
4486c6b7bcb is described below

commit 4486c6b7bcbd2ca9cdf865ecb8a35c421c8bec34
Author: Yongqiang YANG <[email protected]>
AuthorDate: Tue Aug 19 09:43:14 2025 +0800

    [fix](case) remove test_rowstore_query_ck (#54917)
    
    which is not supported in 3.0.
    
    Co-authored-by: Yongqiang YANG <[email protected]>
---
 .../data/point_query_p0/test_rowstore_query_ck.out | Bin 185 -> 0 bytes
 .../point_query_p0/test_rowstore_query_ck.groovy   |  44 ---------------------
 2 files changed, 44 deletions(-)

diff --git a/regression-test/data/point_query_p0/test_rowstore_query_ck.out 
b/regression-test/data/point_query_p0/test_rowstore_query_ck.out
deleted file mode 100644
index b43e0263960..00000000000
Binary files a/regression-test/data/point_query_p0/test_rowstore_query_ck.out 
and /dev/null differ
diff --git 
a/regression-test/suites/point_query_p0/test_rowstore_query_ck.groovy 
b/regression-test/suites/point_query_p0/test_rowstore_query_ck.groovy
deleted file mode 100644
index 896264f0065..00000000000
--- a/regression-test/suites/point_query_p0/test_rowstore_query_ck.groovy
+++ /dev/null
@@ -1,44 +0,0 @@
-// Licensed to the Apache Software Foundation (ASF) under one
-// or more contributor license agreements.  See the NOTICE file
-// distributed with this work for additional information
-// regarding copyright ownership.  The ASF licenses this file
-// to you under the Apache License, Version 2.0 (the
-// "License"); you may not use this file except in compliance
-// with the License.  You may obtain a copy of the License at
-//
-//   http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing,
-// software distributed under the License is distributed on an
-// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-// KIND, either express or implied.  See the License for the
-// specific language governing permissions and limitations
-// under the License.
-
-suite("test_rowstore_ck", "p0") {
-    def tableName = "rs_query_2_ck"
-    sql """DROP TABLE IF EXISTS ${tableName}"""
-    sql "set enable_decimal256 = true"
-    sql """
-              CREATE TABLE IF NOT EXISTS ${tableName} (
-                `k1` int(11) NULL COMMENT "",
-                `v1` text NULL COMMENT "",
-                `v2` DECIMAL(50, 18) NULL COMMENT ""
-              ) ENGINE=OLAP
-              UNIQUE KEY(`k1`)
-              CLUSTER BY(`v2`)
-              DISTRIBUTED BY HASH(`k1`) BUCKETS 1
-              PROPERTIES (
-              "replication_allocation" = "tag.location.default: 1",
-              "store_row_column" = "true",
-              "enable_unique_key_merge_on_write" = "true",
-              "light_schema_change" = "true",
-              "storage_format" = "V2"
-              )
-          """
-
-    sql """insert into ${tableName} values (1, 'abc', 1111919.12345678919)"""
-    qt_sql """select * from ${tableName}"""
-    sql """insert into ${tableName} values (2, 'def', 1111919.12345678919)"""
-    qt_sql """select * from ${tableName} where k1 = 2"""
-}
\ No newline at end of file


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

Reply via email to