Changes between Initial Version and Version 1 of Ticket #29155


Ignore:
Timestamp:
Feb 23, 2018, 6:14:55 PM (6 years ago)
Author:
Tim Graham
Comment:

I'm attaching a test for Django's test suite that fails (on PostgreSQL but not SQLite) as of ba37ee9ef882deb8e917f1cae0c586a0a275e731.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29155

    • Property Triage Stage UnreviewedAccepted
    • Property Summary Using contains field lookup with Substr database function cause modification of second parameter of SubstrUsing contains lookup with Substr causes modification of second parameter of Substr
  • Ticket #29155 – Description

    initial v1  
    44{{{
    55class User(models.Model):
    6     field1 = models.Charfield(max_length=120)
    7     field2 = models.Charfield(max_length=120)
     6    field1 = models.CharField(max_length=120)
     7    field2 = models.CharField(max_length=120)
    88}}}
    99
Back to Top