Skip to content

Commit

Permalink
Skip db sync rename table in 2.0/2.1 (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
w41ter authored Sep 9, 2024
1 parent 076a5d3 commit fd5072a
Showing 1 changed file with 5 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_db_sync_rename_table") {
def versions = sql_return_maparray "show variables like 'version_comment'"
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
}

def tableName = "tbl_rename_table_" + UUID.randomUUID().toString().replace("-", "")
def syncerAddress = "127.0.0.1:9190"
Expand Down

0 comments on commit fd5072a

Please sign in to comment.