From c272dba6658c319eb784f08684c145f81db045bb Mon Sep 17 00:00:00 2001 From: Rafael Lopez Date: Sun, 7 Nov 2021 13:04:54 -0500 Subject: [PATCH] JAVA-2592: Add DROP TABLE IF EXIST clause to avoid SQL exception --- .../spring-boot-persistence/src/test/resources/dsrouting-db.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/persistence-modules/spring-boot-persistence/src/test/resources/dsrouting-db.sql b/persistence-modules/spring-boot-persistence/src/test/resources/dsrouting-db.sql index c9ca52907a..7449b23307 100644 --- a/persistence-modules/spring-boot-persistence/src/test/resources/dsrouting-db.sql +++ b/persistence-modules/spring-boot-persistence/src/test/resources/dsrouting-db.sql @@ -1,3 +1,5 @@ +drop table if exists client; + create table client ( id numeric, name varchar(50),