Skip to content

Commit

Permalink
Allow table exists not support 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
w41ter committed Sep 9, 2024
1 parent 6c773b4 commit 29d870d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

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}")
if (versions[0].Value.contains('doris-2.0.') || versions[0].Value.contains('doris-2.1')) {
logger.info("2.0/2.1 not support this case, current version is: ${versions[0].Value}")
return
}

Expand Down

0 comments on commit 29d870d

Please sign in to comment.