[jOOQ/jOOQ#14631] Add parser support for SQLite's STRICT tables
This commit is contained in:
parent
3de4b0eff3
commit
ddb6529159
@ -4597,11 +4597,16 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
|
||||
? withDataStep.withNoData()
|
||||
: withDataStep;
|
||||
}
|
||||
else if (ctas)
|
||||
else if (ctas) {
|
||||
throw expected("AS, WITH, SELECT, or (");
|
||||
else
|
||||
}
|
||||
else {
|
||||
onCommitStep = asStep;
|
||||
|
||||
// [#14631] SQLite optional keywords
|
||||
parseKeywordIf("STRICT");
|
||||
}
|
||||
|
||||
commentStep = onCommit.apply(onCommitStep);
|
||||
|
||||
List<SQL> storage = new ArrayList<>();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user