Skip to content

Commit

Permalink
Skip some cases doris 2.0 not supported yet (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
w41ter authored Sep 9, 2024
1 parent 1eaa57c commit 076a5d3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
// under the License.

suite("test_allow_table_exists") {
def versions = sql_return_maparray "show variables like 'version_comment'"
if (versions[0].Value.contains('doris-2.0.')) {
logger.info("2.0 not support this case, current version is: ${versions[0].Value}")
return
}

def tableName = "tbl_allow_exists_" + UUID.randomUUID().toString().replace("-", "")
def syncerAddress = "127.0.0.1:9190"
Expand Down
2 changes: 2 additions & 0 deletions regression-test/suites/table-sync/test_bitmap_index.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
// under the License.

suite("test_bitmap_index") {
logger.info("test bitmap index will be replaced by inverted index")
return

def tableName = "tbl_bitmap_index_" + UUID.randomUUID().toString().replace("-", "")
def syncerAddress = "127.0.0.1:9190"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@
// specific language governing permissions and limitations
// under the License.
suite("test_insert_overwrite") {
def versions = sql_return_maparray "show variables like 'version_comment'"
if (versions[0].Value.contains('doris-2.0.')) {
logger.info("2.0 not support this case, current version is: ${versions[0].Value}")
return
}

// The doris has two kind of insert overwrite handle logic: leagcy and nereids.
// The first will
// 1. create temp table
Expand Down

0 comments on commit 076a5d3

Please sign in to comment.