[test](jdbc catalog) Use different table names to prevent case errors (#28276)

This commit is contained in:
zy-kkk
2023-12-12 19:19:02 +08:00
committed by GitHub
parent 15f5acf1ae
commit 0a5a579151
3 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ suite("test_mysql_jdbc_catalog", "p0,external,mysql,external_docker,external_doc
String ex_tb21 = "test_key_word";
String test_insert = "test_insert";
String test_insert2 = "test_insert2";
String test_insert_all_types = "test_insert_all_types";
String test_insert_all_types = "test_mysql_insert_all_types";
String test_ctas = "test_ctas";
String auto_default_t = "auto_default_t";
String dt = "dt";

View File

@ -30,7 +30,7 @@ suite("test_oracle_jdbc_catalog", "p0,external,oracle,external_docker,external_d
String SID = "XE";
String test_insert = "TEST_INSERT";
String test_all_types = "TEST_ALL_TYPES";
String test_insert_all_types = "test_insert_all_types";
String test_insert_all_types = "test_oracle_insert_all_types";
String test_ctas = "test_ctas";
String inDorisTable = "doris_in_tb";

View File

@ -30,7 +30,7 @@ suite("test_pg_jdbc_catalog", "p0,external,pg,external_docker,external_docker_pg
String inDorisTable = "test_pg_jdbc_doris_in_tb";
String test_insert = "test_insert";
String test_all_types = "test_all_types";
String test_insert_all_types = "test_insert_all_types";
String test_insert_all_types = "test_pg_insert_all_types";
String test_ctas = "test_ctas";
sql """create database if not exists ${internal_db_name}; """