Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 1.2.2, 1.2.3, 1.2.4
-
Fix Version/s: None
-
Component/s: Import/Export
-
Labels:None
Description
This bug was introduced by the person reporting the bug #DC-592.
When trying to generate an ALTER TABLE statement with Doctrine_Core::ATTR_QUOTE_IDENTIFIER enabled, the column identifier is not quoted, and a blank identifier is instead quoted, generating the following SQL:
ALTER TABLE "mytable" MODIFY (username "" VARCHAR2(200))
The proper SQL to be generated should be:
ALTER TABLE "mytable" MODIFY ("username" VARCHAR2(200))