-
-
Notifications
You must be signed in to change notification settings - Fork 241
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
mysql server default don't work at all due to broken regexp #483
Comments
Michael Bayer (@zzzeek) wrote: note also mariadb 10.2 reports integer defaults without quotes whereas other mysqls do. |
Michael Bayer (@zzzeek) wrote: |
Michael Bayer (@zzzeek) wrote: Repair server default comparison for MySQL / MariaDB The regexp for comparing the TIMESTAMP function Change-Id: I7bdaceb7e0dbe06bc2c3690cd5dd8e737716278c → c551955 |
Changes by Michael Bayer (@zzzeek):
|
The regexp for comparing the TIMESTAMP function was obliterating all other comparisons as it was incorrect. Add new regexp for integers that also adjusts for mariadb 10.2 quoting differences vs. mariadb 10.1 Change-Id: I7bdaceb7e0dbe06bc2c3690cd5dd8e737716278c Fixes: sqlalchemy#455 Fixes: sqlalchemy#483
The regexp for comparing the TIMESTAMP function was obliterating all other comparisons as it was incorrect. Add new regexp for integers that also adjusts for mariadb 10.2 quoting differences vs. mariadb 10.1 Change-Id: I7bdaceb7e0dbe06bc2c3690cd5dd8e737716278c Fixes: sqlalchemy#455 Fixes: sqlalchemy#483
Migrated issue, originally created by Michael Bayer (@zzzeek)
the regexp added in #455 is wrong due to missing r'' around the subsitution expression and breaks comparison of most values.
The text was updated successfully, but these errors were encountered: