-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Comparison Problem Default 'NULL' #2817
Comments
Please check if this issue matches any of the following:
|
After updating to MariaDB 10.2 on a CentOS server I'm experiencing the same problem. I just dumped the database from the server and imported it into MySQL on Windows and there is nothing to update according to the |
Just found possible approaches to fix: see my comment on doctrine/orm#6565 I'll publish a P/R soon Seb |
Here's a P/R: #2825. Feel free to test and comment. |
This is duplicate of doctrine/orm#6565 and should be fixed by #2825. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
I am using
When I run command:
I get every time same queries run and of course with
I see every time the same SQL Queries (all of them ALTER).
So I have troubleshooted it a bit and found the following issue in:
More precisely the problem is on :
The problem is that default null is different type. In table 1 is string "NULL" while in second table is a null type. Probably here need to cast or also check if property value is "NULL".
Is this a known issue? Any workarounds how to fix this one? It should be a new issue due to PHP version or MySQL/MariaDB because it's impossible to be unspotted so far.
The text was updated successfully, but these errors were encountered: