ParseOneWithInt is similar to ParseOn but interprets the INT and SERIAL types as the provided integer type.
( sql string, nakedIntType *types.T, )
| 260 | // ParseOneWithInt is similar to ParseOn but interprets the INT and SERIAL |
| 261 | // types as the provided integer type. |
| 262 | func ParseOneWithInt( |
| 263 | sql string, nakedIntType *types.T, |
| 264 | ) (statements.Statement[tree.Statement], error) { |
| 265 | var p Parser |
| 266 | return p.parseOneWithInt(sql, nakedIntType, discardComments) |
| 267 | } |
| 268 | |
| 269 | // ParseQualifiedTableName parses a possibly qualified table name. The |
| 270 | // table name must contain one or more name parts, using the full |
no test coverage detected
searching dependent graphs…