(ctx context.Context, sql string, params ...parser.ParseParam)
| 160 | // thus avoid allocating new parser. See session.SQLParser for more information. |
| 161 | type SQLParser interface { |
| 162 | ParseSQL(ctx context.Context, sql string, params ...parser.ParseParam) ([]ast.StmtNode, []error, error) |
| 163 | } |
| 164 | |
| 165 | // Statement is an interface for SQL execution. |
no outgoing calls