Writes a SQL representation of this node to a writer. The leftPrec and rightPrec parameters give us enough context to decide whether we need to enclose the expression in parentheses. For example, we need parentheses around "2 + 3" if preceded by "5 ". This is because th
(
SqlWriter writer,
int leftPrec,
int rightPrec)
| 212 | * @param rightPrec The precedence of the {@link SqlNode} immediately |
| 213 | */ |
| 214 | public abstract void unparse( |
| 215 | SqlWriter writer, |
| 216 | int leftPrec, |
| 217 | int rightPrec); |
| 218 | |
| 219 | public void unparseWithParentheses(SqlWriter writer, int leftPrec, |
| 220 | int rightPrec, boolean parentheses) { |
no outgoing calls