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
In practise, this means DBAL is able to generate schema with such values, but not read it (would fail on invalid type), because Type::$_typeObjects contains unquoted FCQNs, be receives argument with quoted backslashes.
PostgreSQL 9.6.6 from official postgres docker hub and default configuration.
The text was updated successfully, but these errors were encountered:
So, we wanted to use https://github.com/acelaya/doctrine-enum-type with FCQN used for name of custom column type.
If type is named
App\\Enum\\AuthMethod
, DBAL generates thisThis happens in PostgreSqlPlatform#quoteStringLiteral.
No reverse process happens when reading these values from DB.
Retrieving this value happens in AbstractSchemaManager#extractDoctrineTypeFromComment
In practise, this means DBAL is able to generate schema with such values, but not read it (would fail on invalid type), because
Type::$_typeObjects
contains unquoted FCQNs, be receives argument with quoted backslashes.PostgreSQL 9.6.6 from official postgres docker hub and default configuration.
The text was updated successfully, but these errors were encountered: