IsWindowFunctionApplication returns true iff the function is being applied as a window function.
()
| 1350 | |
| 1351 | // IsWindowFunctionApplication returns true iff the function is being applied as a window function. |
| 1352 | func (node *FuncExpr) IsWindowFunctionApplication() bool { |
| 1353 | return node.WindowDef != nil |
| 1354 | } |
| 1355 | |
| 1356 | // IsDistSQLBlocklist returns whether the function is not supported by DistSQL. |
| 1357 | func (node *FuncExpr) IsDistSQLBlocklist() bool { |
no outgoing calls
no test coverage detected