Changes between Initial Version and Version 8 of Ticket #28643
- Timestamp:
- Oct 9, 2017, 3:39:22 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28643
- Property Cc added
- Property Triage Stage Unreviewed → Accepted
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #28643 – Description
initial v8 10 10 LEFT(): Returns the leftmost number of characters as specified 11 11 LPAD(): Returns the string argument, left-padded with the specified string 12 LTRIM(): Removes leading spaces13 12 MD5(): Calculates the MD5 hash of string, returning the result in hexadecimal 14 13 REPEAT(): Repeats a string the specified number of times … … 17 16 RIGHT(): Returns the specified rightmost number of characters 18 17 RPAD(): Appends string the specified number of times 19 RTRIM(): Removes trailing spaces 20 TRIM(): Removes leading and trailing spaces 18 LTRIM(): Removes leading spaces ([https://github.com/django/django/pull/9220 PR #9220]) 19 RTRIM(): Removes trailing spaces ([https://github.com/django/django/pull/9220 PR #9220]) 20 TRIM(): Removes leading and trailing spaces ([https://github.com/django/django/pull/9220 PR #9220]) 21 21 22 22 Numeric functions: