This is an automated email from the ASF dual-hosted git repository.
gavinchou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new beafd651051 [Test](check) Skip view for check meta test (#47175)
beafd651051 is described below
commit beafd651051b5eeb0d0c7e16a8377fd8f0bab290
Author: Uniqueyou <[email protected]>
AuthorDate: Fri Jan 17 21:54:14 2025 +0800
[Test](check) Skip view for check meta test (#47175)
---
regression-test/suites/data_reliability/check_meta.groovy | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/regression-test/suites/data_reliability/check_meta.groovy
b/regression-test/suites/data_reliability/check_meta.groovy
index 32456a116cc..50e887c3e9b 100644
--- a/regression-test/suites/data_reliability/check_meta.groovy
+++ b/regression-test/suites/data_reliability/check_meta.groovy
@@ -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
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]