TODO: Rename this interface Engine
| 21 | |
| 22 | // TODO: Rename this interface Engine |
| 23 | type Parser interface { |
| 24 | Parse(io.Reader) ([]ast.Statement, error) |
| 25 | CommentSyntax() source.CommentSyntax |
| 26 | IsReservedKeyword(string) bool |
| 27 | } |
| 28 | |
| 29 | func (c *Compiler) parseCatalog(schemas []string) error { |
| 30 | files, err := sqlpath.Glob(schemas) |
no outgoing calls
no test coverage detected