Changes between Initial Version and Version 7 of Ticket #29544
- Timestamp:
- Jul 5, 2018, 11:11:31 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29544
- Property Component Uncategorized → Database layer (models, ORM)
- Property Triage Stage Unreviewed → Ready for checkin
- Property Summary MariaDB regression in 2.0.7 in REGEXP_LIKE → Django 2.0.7 broke regex lookup on MariaDB
- Property Type Uncategorized → Bug
- Property Severity Normal → Release blocker
- Property Has patch set
-
Ticket #29544 – Description
initial v7 1 Since Django 2.0.7 it fails to do regex p lookups on MariaDB. The problem is in code introduced for https://code.djangoproject.com/ticket/29451 - it assumes that MariaDB 10.3 has REGEXP_LIKE what is not true.1 Since Django 2.0.7 it fails to do regex lookups on MariaDB. The problem is in code introduced for #29451 - it assumes that MariaDB 10.3 has REGEXP_LIKE what is not true. 2 2 3 3 The exception is: 4 5 4 6 5 {{{ … … 24 23 _mysql_exceptions.OperationalError: (1305, 'FUNCTION test_weblate.REGEXP_LIKE does not exist') 25 24 }}} 26 27