@@ -873,15 +873,19 @@ abstract class RemoteJDBCInstrumentationTest extends VersionedNamingTestBase {
873
873
MYSQL | " " | connectTo(driver, peerConnectionProps(driver)) | " CREATE TEMPORARY TABLE s_test_ (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
874
874
POSTGRESQL | " " | connectTo(driver, peerConnectionProps(driver)) | " CREATE TEMPORARY TABLE s_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
875
875
SQLSERVER | " " | connectTo(driver, peerConnectionProps(driver)) | " CREATE TABLE #s_test_ (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
876
+ ORACLE | " " | connectTo(driver, peerConnectionProps(driver)) | " CREATE GLOBAL TEMPORARY TABLE s_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
876
877
MYSQL | " tomcat" | cpDatasources. get(conPoolType). get(driver). getConnection() | " CREATE TEMPORARY TABLE s_tomcat_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
877
878
POSTGRESQL | " tomcat" | cpDatasources. get(conPoolType). get(driver). getConnection() | " CREATE TEMPORARY TABLE s_tomcat_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
878
879
SQLSERVER | " tomcat" | cpDatasources. get(conPoolType). get(driver). getConnection() | " CREATE TABLE #s_tomcat_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
880
+ ORACLE | " tomcat" | cpDatasources. get(conPoolType). get(driver). getConnection() | " CREATE GLOBAL TEMPORARY TABLE s_tomcat_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
879
881
MYSQL | " hikari" | cpDatasources. get(conPoolType). get(driver). getConnection() | " CREATE TEMPORARY TABLE s_hikari_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
880
882
POSTGRESQL | " hikari" | cpDatasources. get(conPoolType). get(driver). getConnection() | " CREATE TEMPORARY TABLE s_hikari_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
881
883
SQLSERVER | " hikari" | cpDatasources. get(conPoolType). get(driver). getConnection() | " CREATE TABLE #s_hikari_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
884
+ ORACLE | " hikari" | cpDatasources. get(conPoolType). get(driver). getConnection() | " CREATE GLOBAL TEMPORARY TABLE s_hikari_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
882
885
MYSQL | " c3p0" | cpDatasources. get(conPoolType). get(driver). getConnection() | " CREATE TEMPORARY TABLE s_c3p0_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
883
886
POSTGRESQL | " c3p0" | cpDatasources. get(conPoolType). get(driver). getConnection() | " CREATE TEMPORARY TABLE s_c3p0_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
884
887
SQLSERVER | " c3p0" | cpDatasources. get(conPoolType). get(driver). getConnection() | " CREATE TABLE #s_c3p0_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
888
+ ORACLE | " c3p0" | cpDatasources. get(conPoolType). get(driver). getConnection() | " CREATE GLOBAL TEMPORARY TABLE s_c3p0_test (id INTEGER not NULL, PRIMARY KEY ( id ))" | " CREATE"
885
889
}
886
890
887
891
0 commit comments