(r io.Reader)
| 14 | // Parser is an interface for SQL parsers that can parse SQL into AST statements. |
| 15 | type Parser interface { |
| 16 | Parse(r io.Reader) ([]ast.Statement, error) |
| 17 | } |
| 18 | |
| 19 | // ColumnGetter retrieves column names for a query by preparing it against a database. |
no outgoing calls
no test coverage detected