ResultSetNode interface has a ResultFields property, represents a Node that returns result set. Implementations include SelectStmt, SubqueryExpr, TableSource, TableName, Join and SetOprStmt.
| 123 | // ResultSetNode interface has a ResultFields property, represents a Node that returns result set. |
| 124 | // Implementations include SelectStmt, SubqueryExpr, TableSource, TableName, Join and SetOprStmt. |
| 125 | type ResultSetNode interface { |
| 126 | Node |
| 127 | |
| 128 | resultSet() |
| 129 | } |
| 130 | |
| 131 | // SensitiveStmtNode overloads StmtNode and provides a SecureText method. |
| 132 | type SensitiveStmtNode interface { |
nothing calls this directly
no outgoing calls
no test coverage detected