Skip to content

Commit 18100b4

Browse files
committed
DATAJDBC-616 - Fixes a test with sporadic failures.
The schema created in the setup script didn't get cleaned up when it contained tables, which it does once the setup script ran once.
1 parent 9658ac1 commit 18100b4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-data-jdbc/src/test/resources/org.springframework.data.jdbc.core/JdbcAggregateTemplateSchemaIntegrationTests-mssql.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
DROP TABLE IF EXISTS OTHER;
1+
DROP TABLE IF EXISTS OTHER.DUMMY_ENTITY;
2+
DROP TABLE IF EXISTS OTHER.REFERENCED;
23
DROP SCHEMA IF EXISTS OTHER;
34

45
CREATE SCHEMA OTHER;

0 commit comments

Comments
 (0)