ParseWithInt parses a sql statement string and returns a list of Statements. The INT token will result in the specified TInt type.
(sql string, nakedIntType *types.T)
| 69 | // ParseWithInt parses a sql statement string and returns a list of |
| 70 | // Statements. The INT token will result in the specified TInt type. |
| 71 | func (p *Parser) ParseWithInt(sql string, nakedIntType *types.T) (statements.Statements, error) { |
| 72 | return p.parseWithDepth(1, sql, nakedIntType, discardComments) |
| 73 | } |
| 74 | |
| 75 | func (p *Parser) parseOneWithInt( |
| 76 | sql string, nakedIntType *types.T, comments commentsMode, |
nothing calls this directly
no test coverage detected