Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
wyxxxcat committed Jan 17, 2025
1 parent 3c4a609 commit d93e917
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 d93e917

Please sign in to comment.