From 29d870d031325bb188a3d460f59a2a9c785415d6 Mon Sep 17 00:00:00 2001 From: w41ter Date: Mon, 9 Sep 2024 16:51:48 +0800 Subject: [PATCH] Allow table exists not support 2.1 --- .../suites/table-sync/test_allow_table_exists.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regression-test/suites/table-sync/test_allow_table_exists.groovy b/regression-test/suites/table-sync/test_allow_table_exists.groovy index 9de7526e..d4fa2d71 100644 --- a/regression-test/suites/table-sync/test_allow_table_exists.groovy +++ b/regression-test/suites/table-sync/test_allow_table_exists.groovy @@ -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 }