[jOOQ/jOOQ#11855] Support parsing CT / CV as Teradata aliases
- CT for CREATE TABLE - CV for CREATE VIEW
This commit is contained in:
parent
153de56fa7
commit
ca64acef4d
@ -690,6 +690,10 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
|
||||
return result = metaLookupsForceIgnore(true).parseCreate();
|
||||
else if (!parseResultQuery && peekKeyword("COMMENT ON"))
|
||||
return result = metaLookupsForceIgnore(true).parseCommentOn();
|
||||
else if (!parseResultQuery && parseKeywordIf("CT"))
|
||||
return result = metaLookupsForceIgnore(true).parseCreateTable(false);
|
||||
else if (!parseResultQuery && parseKeywordIf("CV"))
|
||||
return result = metaLookupsForceIgnore(true).parseCreateView(false);
|
||||
else if (peekKeyword("CALL") && requireProEdition())
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user