mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
DDC-2435: Column name with number and reserved character creates invalid query #3057
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (May 8, 2013).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user dane77hz:
I have a column name called 1:1 which i map like so
@Column(type="string", name="
1:1")Unfortunately, the SQL that get generated does not work in mysql:
SELECT t0.
1:1AS 112 FROMtablet0the problem is with the 'AS 112', if it contained a letter eg. 11a, or was escaped eg.
112it wound work.@doctrinebot commented on GitHub (May 17, 2013):
Comment created by @FabioBatSilva:
Fixed :
c9d9b68fa9@doctrinebot commented on GitHub (May 17, 2013):
Issue was closed with resolution "Fixed"