[jOOQ/jOOQ#14592] Add parser support for T-SQL table hints without WITH keyword
This commit is contained in:
parent
ae21a35eb9
commit
c8d668b5b4
@ -7265,6 +7265,20 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
|
||||
// [#10164] Without parens, WITH is part of the next statement in delimiter free statement batches
|
||||
else
|
||||
position(p);
|
||||
}
|
||||
else if (!ignoreProEdition() && parseIf('(') && requireProEdition()) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
else {
|
||||
for (;;) {
|
||||
@ -7399,6 +7413,11 @@ final class DefaultParseContext extends AbstractScope implements ParseContext {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user