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.
This commit is contained in:
Jens Schauder
2020-10-15 17:20:19 +02:00
parent 9658ac1668
commit 18100b44f3

View File

@@ -1,4 +1,5 @@
DROP TABLE IF EXISTS OTHER;
DROP TABLE IF EXISTS OTHER.DUMMY_ENTITY;
DROP TABLE IF EXISTS OTHER.REFERENCED;
DROP SCHEMA IF EXISTS OTHER;
CREATE SCHEMA OTHER;