[jOOQ/jOOQ#13411] CockroachDB uses the NOT VISIBLE keywords

This commit is contained in:
Lukas Eder 2024-01-25 08:57:37 +01:00
parent 571d4e28da
commit 9eded931ee

View File

@ -4925,7 +4925,7 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
else if (parseKeywordIf("VISIBLE")) {
continue;
}
else if (parseKeywordIf("HIDDEN", "INVISIBLE")) {
else if (parseKeywordIf("HIDDEN", "NOT VISIBLE", "INVISIBLE")) {
type = type.hidden(true);
continue;
}