[jOOQ/jOOQ#13411] HANA supports the NOT HIDDEN keywords

This commit is contained in:
Lukas Eder 2024-01-25 09:41:40 +01:00
parent 9eded931ee
commit 71cc8a71c4

View File

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