OPENJPA-2832 DROP COLUMN does not use delimiters and always add double quotes

This commit is contained in:
Enrico Olivelli 2020-09-28 17:50:54 +02:00
parent 4c624c0acc
commit b24a6a239c
1 changed files with 1 additions and 1 deletions

View File

@ -3840,7 +3840,7 @@ public class DBDictionary
return new String[0];
return new String[]{ "ALTER TABLE "
+ getFullName(column.getTable(), false)
+ " DROP COLUMN " + column };
+ " DROP COLUMN " + toDBName(column.getIdentifier()) };
}
/**