(sql: string)
| 4 | |
| 5 | // Parse column constraint |
| 6 | function pcc(sql: string) { |
| 7 | return parseColumnConstraint( |
| 8 | "main", |
| 9 | new CursorV2(tokenizeSql(sql, "sqlite")) |
| 10 | ); |
| 11 | } |
| 12 | |
| 13 | describe("parse column constraint", () => { |
| 14 | test("constraint this_is_primary_key primary key autoincrement", () => { |
no test coverage detected