You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The DBAL takes the responsibility for automatic quoting of identifiers but it doesn't work in many cases:
The list of keywords is never complete and up to date.
Apart from the keywords, the logic of detection whether the needed identifier needs to be quoted is platform-specific but there's no platform API for that.
It's impossible to quote a keyword or another identifier that needs quoting manually.
The DBAL takes the responsibility for automatic quoting of identifiers but it doesn't work in many cases:
Tableclass is responsible for object name "normalization" which will lead to bugs in edge cases (e.g. cannot represent columnsFooandfooon the same table). See Normalize identifiers before filtering; fix getPrimaryKeyColumns not returning uppercased primary key #4689.The details are to follow.