SubqueryExpr represents a subquery.
| 360 | |
| 361 | // SubqueryExpr represents a subquery. |
| 362 | type SubqueryExpr struct { |
| 363 | exprNode |
| 364 | // Query is the query SelectNode. |
| 365 | Query ResultSetNode |
| 366 | Evaluated bool |
| 367 | Correlated bool |
| 368 | MultiRows bool |
| 369 | Exists bool |
| 370 | } |
| 371 | |
| 372 | func (*SubqueryExpr) resultSet() {} |
| 373 |
nothing calls this directly
no outgoing calls
no test coverage detected