(cfg *SQLGenerator)
| 27 | func (astParenthesis) IsBooleanNode() {} |
| 28 | func (p astParenthesis) UseAs() Node { return p.Value.UseAs() } |
| 29 | func (p astParenthesis) SQLString(cfg *SQLGenerator) string { |
| 30 | return "(" + p.Value.SQLString(cfg) + ")" |
| 31 | } |
| 32 | |
| 33 | func (p astParenthesis) EqualsSQLString(cfg *SQLGenerator, not bool, other Node) (string, error) { |
| 34 | if supp, ok := p.Value.(SupportsEquality); ok { |