Changes between Version 22 and Version 23 of Ticket #28643


Ignore:
Timestamp:
Dec 21, 2017, 3:21:18 AM (6 years ago)
Author:
Nick Pope
Comment:

Updated description and comment:9 to include NullIf.

See the following links:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28643 – Description

    v22 v23  
    55This is just a sample checklist, with corresponding attributes to which backend has them available.
    66
    7 ||= String =||
     7||||||||||||||= **Comparison** =||
     8||Name||Description||PostgreSQL||Oracle||MySQL||SQLite||PR||
     9||NULLIF()||Returns NULL if the first argument equals the second.||X||X||X||X||-||
     10\\
     11||||||||||||||= **Text** =||
    812||Name||Description||PostgreSQL||Oracle||MySQL||SQLite||PR||
    913||ASCII()||Returns numeric value of left-most character||X||X||X||as UNICODE()||-||
     
    2024||RTRIM()||Removes trailing spaces||X||X||X||X||[https://github.com/django/django/pull/9220 9220]||
    2125||TRIM()||Removes leading and trailing spaces||X||X||X||X||[https://github.com/django/django/pull/9220 9220]||
    22 
    23 ||= Numeric =||
     26\\
     27||||||||||||||= **Math** =||
    2428||Name||Description||PostgreSQL||Oracle||MySQL||SQLite||PR||
    2529||ABS()||Returns the absolute value.||X||X||X||X||-||
Back to Top