Fix enumType handling in Column#7238
Conversation
307e6dc to
7a5fe2f
Compare
|
@VincentLanglet yes, the support for |
Great. I'm not familiar with this code. Do you think
|
morozov
left a comment
There was a problem hiding this comment.
Looks good, just need types documented.
I don't know. If you look at the usage of |
84eae89 to
bdf0ca7
Compare
|
@VincentLanglet please squash the commits. We don't want to see Phpdoc / Fix / Fix in the resulting history. |
7e0c321 to
725f51e
Compare
Sure, done. |
|
Thank you, @VincentLanglet. |
|
Hi, any plan for the 4.4.2 release ? :) |
|
Here you go: https://github.com/doctrine/dbal/releases/tag/4.4.2 |
Summary
cc @morozov since you made #6975 and #6945
With the deprecation/remove of hasPlatformOption/getPlatformOption in favor of specific getter. I feel like some getter (and editor method) are missing. (But maybe I'm misunderstand something ?)
Which means
$column->getPlatformOption('enumType')has currently no replacementenumTypeThe enumType platformOption is set when using something like
and there is maybe more similar options...
I'm personally implementing a custom lib which requires to access
enumTypeoption from a Column and this won't be possible in 5.x without any changes.