Merge pull request #11423 from Rafael-Lopez/master

JAVA-2592: Add DROP TABLE IF EXIST clause to avoid SQL exception
This commit is contained in:
kwoyke 2021-11-08 10:57:44 +01:00 committed by GitHub
commit d1cf3c02c1
1 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,5 @@
drop table if exists client;
create table client (
id numeric,
name varchar(50),