[jOOQ/jOOQ#9305] Support parsing Vertica's TEMP table syntax
This commit is contained in:
parent
8b267a321c
commit
94d4d86ffa
@ -2134,12 +2134,16 @@ final class ParserImpl implements Parser {
|
||||
|
||||
if (parseKeywordIf(ctx, "TABLE"))
|
||||
return parseCreateTable(ctx, false);
|
||||
else if (parseKeywordIf(ctx, "TEMP TABLE"))
|
||||
return parseCreateTable(ctx, true);
|
||||
else if (parseKeywordIf(ctx, "TEMPORARY TABLE"))
|
||||
return parseCreateTable(ctx, true);
|
||||
else if (parseKeywordIf(ctx, "TYPE"))
|
||||
return parseCreateType(ctx);
|
||||
else if (parseKeywordIf(ctx, "GENERATOR"))
|
||||
return parseCreateSequence(ctx);
|
||||
else if (parseKeywordIf(ctx, "GLOBAL TEMP TABLE"))
|
||||
return parseCreateTable(ctx, true);
|
||||
else if (parseKeywordIf(ctx, "GLOBAL TEMPORARY TABLE"))
|
||||
return parseCreateTable(ctx, true);
|
||||
else if (parseKeywordIf(ctx, "INDEX"))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user