Changes between Initial Version and Version 7 of Ticket #29544


Ignore:
Timestamp:
Jul 5, 2018, 11:11:31 AM (6 years ago)
Author:
Tim Graham
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29544

    • Property Component UncategorizedDatabase layer (models, ORM)
    • Property Triage Stage UnreviewedReady for checkin
    • Property Summary MariaDB regression in 2.0.7 in REGEXP_LIKEDjango 2.0.7 broke regex lookup on MariaDB
    • Property Type UncategorizedBug
    • Property Severity NormalRelease blocker
    • Property Has patch set
  • Ticket #29544 – Description

    initial v7  
    1 Since Django 2.0.7 it fails to do regexp 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.
     1Since 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.
    22
    33The exception is:
    4 
    54
    65{{{
     
    2423_mysql_exceptions.OperationalError: (1305, 'FUNCTION test_weblate.REGEXP_LIKE does not exist')
    2524}}}
    26 
    27 
Back to Top