Returns the name of the function. Multiple functions may have the same name. For example, COUNT will have a separate Func class for the analytic and aggregate versions but both will have the same value of name().
(cls)
| 128 | |
| 129 | @classmethod |
| 130 | def name(cls): |
| 131 | '''Returns the name of the function. Multiple functions may have the same name. |
| 132 | For example, COUNT will have a separate Func class for the analytic and aggregate |
| 133 | versions but both will have the same value of name(). |
| 134 | ''' |
| 135 | return cls.__name__ if cls._NAME is None else cls._NAME |
| 136 | |
| 137 | @classmethod |
| 138 | def signatures(cls): |
no outgoing calls