[jOOQ/jOOQ#9741] Added CONTAINED IN support
This commit is contained in:
parent
df5089e803
commit
f93a7beae4
@ -124,6 +124,26 @@ package org.jooq;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -96,6 +96,7 @@ final class Keywords {
|
||||
static final Keyword K_CONNECT_BY = keyword("connect by");
|
||||
static final Keyword K_CONSTRAINT = keyword("constraint");
|
||||
static final Keyword K_CONSTRAINTS = keyword("constraints");
|
||||
static final Keyword K_CONTAINED = keyword("contained");
|
||||
static final Keyword K_CONTINUE = keyword("continue");
|
||||
static final Keyword K_CONTINUE_IDENTITY = keyword("continue identity");
|
||||
static final Keyword K_CREATE = keyword("create");
|
||||
|
||||
@ -4975,6 +4975,19 @@ final class ParserImpl implements Parser {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -162,6 +162,16 @@ package org.jooq.impl;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -138,6 +138,10 @@ package org.jooq.impl;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user