(
SqlWriter writer,
SqlOperator operator,
SqlCall call,
int leftPrec,
int rightPrec)
| 31 | */ |
| 32 | FUNCTION { |
| 33 | @Override public void unparse( |
| 34 | SqlWriter writer, |
| 35 | SqlOperator operator, |
| 36 | SqlCall call, |
| 37 | int leftPrec, |
| 38 | int rightPrec) { |
| 39 | SqlUtil.unparseFunctionSyntax(operator, writer, call, false); |
| 40 | } |
| 41 | }, |
| 42 | |
| 43 | /** |
nothing calls this directly
no test coverage detected