-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Laravel 11.x] Unknown database type enum requested, Doctrine\DBAL\Platforms\MySQL80Platform may not support it. #802
Comments
Hi @coderkoala, yep this is indeed related to L11 removing DBAL and the related code. For this change I lifted all the DBAL code Lodata used from L10 and inserted it into Lodata. However, I did not lift out the code relating to installing type mappings for Doctrine. It might be as simple as making And then calling it as: $entitySet->getDoctrineConnection()
->getDatabasePlatform()
->registerDoctrineTypeMapping('enum','string'); Does that work? If so I'd be happy to merge a PR that made that method public :) |
Namaskaar @27pchrisl, spot on! Looks like it was a good bet bringing implementations into the codebase itself for maintainability. I turned the method public, then proceeded to refactor all of the service provider. However, I ran into a different issue. My first registered service provider(Users) ran just fine, however the rest still give off the same error:
Please note the What totally boggles my mind, is aside from the first one, others refuse to bind https://flareapp.io/share/Bm0awW9P#/users Here's my
It looks like DBAL is correctly registering Steps I took to see if I lapsed somewhere:
|
I got the same error with Laravel 10.38, also while running the vendor:publish command. For now I have worked around it by making the method getDoctrineConnection public like suggested above and registering the type mapping for every model. It is not pretty but workable for now. |
I'm running into this having just modified several tables to use enum columns in Laravel 11. Are there any plans for this fix to be made without requiring us to modify the source ourselves? |
I'm not able to immediately reproduce this by writing unit tests, where I have a migration using |
I didn't mention that my enum is string-backed, which I see is not supported in the OData spec (saw this issue: #572) So makes sense that this doesn't work. I'll withdraw my request for a "fix" this. |
Namaskaar.
I have been using LOdata largely relying on its autodiscover feature, with a few overrides here and there(say mapping an SQL view to an endpoint).
On Laravel 10, previously, I used to assign enum as type string as so in my AppServiceProvider(in the
boot
method:\DB::connection()->registerDoctrineTypeMapping('enum', 'string');
Then have individual service provider like so:
However, I get an error like the linked one: https://flareapp.io/share/LPlpyzQP
I'm guessing this has to do with Laravel removing Doctrine entirely in L11.x.
As of Laravel 11, I have been largely unable to achieve solving this on my own. Any pointers to fixing this or perhaps an alternative approach to implement on migrating from L10.x to L11.x would be great. Thank you! :)
The text was updated successfully, but these errors were encountered: