HHH-16663 Fix TCK failure due to wrong refactoring in schema management Action enum

This commit is contained in:
Christian Beikov 2023-05-22 13:32:19 +02:00
parent 4ebc24daa0
commit fa15bba8c8
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ public enum Action {
return "create";
case DROP:
return "drop";
case CREATE_DROP:
case CREATE:
return "drop-and-create";
default:
return null;