Parse parses the sql and returns a list of statements.
(sql string)
| 63 | |
| 64 | // Parse parses the sql and returns a list of statements. |
| 65 | func (p *Parser) Parse(sql string) (statements.Statements, error) { |
| 66 | return p.parseWithDepth(1, sql, defaultNakedIntType, discardComments) |
| 67 | } |
| 68 | |
| 69 | // ParseWithInt parses a sql statement string and returns a list of |
| 70 | // Statements. The INT token will result in the specified TInt type. |
nothing calls this directly
no test coverage detected