ExistsExpression represents EXISTS (subquery)
| 790 | |
| 791 | // ExistsExpression represents EXISTS (subquery) |
| 792 | type ExistsExpression struct { |
| 793 | Subquery Statement |
| 794 | } |
| 795 | |
| 796 | func (e *ExistsExpression) expressionNode() {} |
| 797 | func (e ExistsExpression) TokenLiteral() string { return "EXISTS" } |
nothing calls this directly
no outgoing calls
no test coverage detected