Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When one uses a discriminator map with a valid, but incorrectly cased, class name (Foo\\Bar\\baz instead of Foo\\Bar\\baz) for instance, the class metadata won't complain (php being case insensitive when it comes to class name). However, it will complain if the class does not exist. This will lead to "exotic" table alias being generated when querying the parent class because the sqlTableAliases won't contain the wrongly typed classname. Example: SELECT t0.id as id_0, ..., t1.name as name_10, t11.thing as thing_11...
- Loading branch information