Converts text to upper case. :samp:`Upper("{FIELD_NAME}")`
| 48 | |
| 49 | |
| 50 | class Upper(Function): |
| 51 | """ |
| 52 | Converts text to upper case. |
| 53 | |
| 54 | :samp:`Upper("{FIELD_NAME}")` |
| 55 | """ |
| 56 | |
| 57 | database_func = functions.Upper |
| 58 | |
| 59 | |
| 60 | class _Concat(functions.Concat): |
no outgoing calls
searching dependent graphs…