[jOOQ/jOOQ#11172] Add support for SQLite's fts3 and fts4 virtual tables

This commit is contained in:
Lukas Eder 2021-01-02 13:51:21 +01:00
parent 1d62737f95
commit df957c4108

View File

@ -2548,6 +2548,8 @@ final class ParserContext {
case 'V':
if (parseKeywordIf("VIEW"))
return parseCreateView(false);
else if (parseKeywordIf("VIRTUAL") && parseKeyword("TABLE"))
return parseCreateTable(false);
break;
}
@ -3685,6 +3687,10 @@ final class ParserContext {
private final DDLQuery parseCreateTable(boolean temporary) {
boolean ifNotExists = parseKeywordIf("IF NOT EXISTS");
Table<?> tableName = DSL.table(parseTableName().getQualifiedName());
if (parseKeywordIf("USING"))
parseIdentifier();
CreateTableCommentStep commentStep;
CreateTableStorageStep storageStep;