MCPcopy Create free account
hub / github.com/apache/impala / name

Method name

tests/comparison/funcs.py:130–135  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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):

Calls

no outgoing calls