Skip to content
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 @@ -34,6 +34,10 @@ protected JdbcDB2Client(JdbcClientConfig jdbcClientConfig) {
super(jdbcClientConfig);
}

public String getTestQuery() {
return "select 1 from sysibm.sysdummy1";
}

@Override
public List<String> getDatabaseNameList() {
Connection conn = getConnection();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ suite("test_db2_jdbc_catalog", "p0,external,db2,external_docker,external_docker_

order_qt_desc_db "show databases from ${catalog_name};"

order_qt_select_xml "select * from db2.TEST.BOOKS;"
order_qt_select_xml "select * from TEST.BOOKS;"

sql """ drop catalog if exists ${catalog_name} """

Expand Down