Skip to content

Commit

Permalink
HHH-10605 - Fix HSQLDialect dosn't use 'if exists' when dropping sequ…
Browse files Browse the repository at this point in the history
…ences
  • Loading branch information
dreab8 committed May 13, 2016
1 parent 62a1b92 commit 7ac83ba
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -351,7 +351,7 @@ protected String getCreateSequenceString(String sequenceName, int initialValue,

@Override
protected String getDropSequenceString(String sequenceName) {
return "drop sequence " + sequenceName;
return "drop sequence " + sequenceName + " if exists";
}

@Override
Expand Down

0 comments on commit 7ac83ba

Please sign in to comment.