Skip to content

Commit

Permalink
branch-3.0: [Test](check) Skip view for check meta test #47175 (#47190)
Browse files Browse the repository at this point in the history
Cherry-picked from #47175

Co-authored-by: Uniqueyou <[email protected]>
  • Loading branch information
github-actions[bot] and wyxxxcat authored Jan 31, 2025
1 parent 8b0fdf3 commit 1179fb1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions regression-test/suites/data_reliability/check_meta.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ suite("check_meta", "data_reliability,p3") {
List<List<Object>> tableRes = sql """ show tables from ${db} """
for (tableRow : tableRes) {
def table = tableRow[0]
def createTableSql = sql """ show create table ${db}.`${table}` """
if (createTableSql[0][1].contains("CREATE VIEW")) {
continue
}
logger.info("select count database: {}, table {}", db, table)

def repeatedTimes = 6; // replica num * 2
Expand Down

0 comments on commit 1179fb1

Please sign in to comment.