mirror of https://github.com/apache/openjpa.git
OPENJPA-2832 DROP COLUMN does not use delimiters and always add double quotes
This commit is contained in:
parent
4c624c0acc
commit
b24a6a239c
|
@ -3840,7 +3840,7 @@ public class DBDictionary
|
||||||
return new String[0];
|
return new String[0];
|
||||||
return new String[]{ "ALTER TABLE "
|
return new String[]{ "ALTER TABLE "
|
||||||
+ getFullName(column.getTable(), false)
|
+ getFullName(column.getTable(), false)
|
||||||
+ " DROP COLUMN " + column };
|
+ " DROP COLUMN " + toDBName(column.getIdentifier()) };
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue