Changes between Initial Version and Version 8 of Ticket #28643


Ignore:
Timestamp:
Oct 9, 2017, 3:39:22 PM (7 years ago)
Author:
Mariusz Felisiak
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28643

    • Property Cc josh.smeaton@… Mariusz Felisiak added
    • Property Triage Stage UnreviewedAccepted
    • Property Owner changed from nobody to JunyiJ
    • Property Status newassigned
  • Ticket #28643 – Description

    initial v8  
    1010LEFT(): Returns the leftmost number of characters as specified
    1111LPAD(): Returns the string argument, left-padded with the specified string
    12 LTRIM(): Removes leading spaces
    1312MD5(): Calculates the MD5 hash of string, returning the result in hexadecimal
    1413REPEAT(): Repeats a string the specified number of times
     
    1716RIGHT(): Returns the specified rightmost number of characters
    1817RPAD(): Appends string the specified number of times
    19 RTRIM(): Removes trailing spaces
    20 TRIM(): Removes leading and trailing spaces
     18LTRIM(): Removes leading spaces ([https://github.com/django/django/pull/9220 PR #9220])
     19RTRIM(): Removes trailing spaces ([https://github.com/django/django/pull/9220 PR #9220])
     20TRIM(): Removes leading and trailing spaces ([https://github.com/django/django/pull/9220 PR #9220])
    2121
    2222Numeric functions:
Back to Top