Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Enhance](regression)enhance jdbc case to adapt to use case concurrency #28565

Merged
merged 1 commit into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ suite("test_mysql_jdbc_catalog", "p0,external,mysql,external_docker,external_doc
String test_insert = "test_insert";
String test_insert2 = "test_insert2";
String test_insert_all_types = "test_mysql_insert_all_types";
String test_ctas = "test_ctas";
String test_ctas = "test_mysql_ctas";
String auto_default_t = "auto_default_t";
String dt = "dt";
String dt_null = "dt_null";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ suite("test_oracle_jdbc_catalog", "p0,external,oracle,external_docker,external_d
String test_insert = "TEST_INSERT";
String test_all_types = "TEST_ALL_TYPES";
String test_insert_all_types = "test_oracle_insert_all_types";
String test_ctas = "test_ctas";
String test_ctas = "test_oracle_ctas";

String inDorisTable = "doris_in_tb";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ suite("test_pg_jdbc_catalog", "p0,external,pg,external_docker,external_docker_pg
String test_insert = "test_insert";
String test_all_types = "test_all_types";
String test_insert_all_types = "test_pg_insert_all_types";
String test_ctas = "test_ctas";
String test_ctas = "test_pg_ctas";

sql """create database if not exists ${internal_db_name}; """

Expand Down
Loading