Skip to content

Commit

Permalink
[fix](test) fix unstable external p0 tests apache#42158 (apache#42192)
Browse files Browse the repository at this point in the history
cherry pick from apache#42158
  • Loading branch information
morningman authored Oct 21, 2024
1 parent 720a4c9 commit 7568fe4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ suite("test_jdbc_catalog_ddl", "p0,external,mysql,external_docker,external_docke
String mysql_port = context.config.otherConfigs.get("mysql_57_port");
// String driver_url = "mysql-connector-java-5.1.49.jar"
if (enabled != null && enabled.equalsIgnoreCase("true")) {
String catalog_name = "mysql_jdbc5_catalog";
String catalog_name = "test_jdbc_catalog_ddl";

for (String useMetaCache : ["true", "false"]) {
sql """drop catalog if exists ${catalog_name} """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@

suite("paimon_base_filesystem", "p0,external,doris,external_docker,external_docker_doris") {
String enabled = context.config.otherConfigs.get("enablePaimonTest")
if (enabled == null || !enabled.equalsIgnoreCase("true")) {
// if (enabled == null || !enabled.equalsIgnoreCase("true")) {
if (true) {
// temporary comment out, will add back when env is ready
return
}

Expand Down

0 comments on commit 7568fe4

Please sign in to comment.