File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
dd-java-agent/instrumentation/jdbc/src/test/groovy Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,15 @@ import static datadog.trace.api.config.TraceInstrumentationConfig.DB_CLIENT_HOST
3030// workaround for SSLHandShakeException on J9 only with Hikari/MySQL
3131@Requires ({ !System .getProperty(" java.vendor" ).contains(" IBM" ) })
3232abstract class RemoteJDBCInstrumentationTest extends VersionedNamingTestBase {
33+ static final String POSTGRESQL = " postgresql"
34+ static final String MYSQL = " mysql"
35+ static final String SQLSERVER = " sqlserver"
36+
3337 @Shared
3438 private Map<String , String > dbName = [
35- " postgresql " : " jdbcUnitTest" ,
36- " mysql " : " jdbcUnitTest" ,
37- " sqlserver " : " master"
39+ ( POSTGRESQL ) : " jdbcUnitTest" ,
40+ ( MYSQL ) : " jdbcUnitTest" ,
41+ ( SQLSERVER ) : " master"
3842 ]
3943
4044 @Shared
You can’t perform that action at this time.
0 commit comments