Returns a SQL string representing this expr. Subclasses should override this method instead of toSql() to ensure that parenthesis are properly added around the toSql().
(ToSqlOptions options)
| 875 | * instead of toSql() to ensure that parenthesis are properly added around the toSql(). |
| 876 | */ |
| 877 | protected abstract String toSqlImpl(ToSqlOptions options); |
| 878 | |
| 879 | protected String toSqlImpl() { return toSqlImpl(DEFAULT); }; |
| 880 |
no outgoing calls