mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
Issue with SQL Server column names when they include "[" and "]" #4935
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 @j-d on GitHub (Dec 14, 2015).
A table with two columns. One has a funny name like
[MyColumn]in a table and another column with a regular name such asmy_column_2.The the
listTableColumnsmethod in theAbstractSchemaManagerwill return an array where the keys will be[mycolumn]andmy_column_2but the actual names of the columns will beMyColumnandmy_column_2, which is wrong.