Skip to content

Commit

Permalink
[opt](test) add more debug info in test_jdbc_catalog_ddl.groovy (apac…
Browse files Browse the repository at this point in the history
  • Loading branch information
morningman authored Jan 3, 2025
1 parent 34f9072 commit 0250384
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ suite("test_jdbc_catalog_ddl", "p0,external,mysql,external_docker,external_docke
"use_meta_cache" = "${useMetaCache}"
);"""
def res = sql(""" show databases from ${catalog_name}; """).collect {x -> x[0] as String}
println("show databases result " + res);
def containedDb = ['mysql', 'doris_test', 'information_schema']
for (final def db in containedDb) {
assertTrue(res.contains(db), 'Not contains db: `' + db + '` in mysql catalog')
Expand Down

0 comments on commit 0250384

Please sign in to comment.