This commit is contained in:
Lukas Eder 2020-02-04 14:38:45 +01:00
parent 93dc41579f
commit 4b66b9bf83
7 changed files with 40 additions and 1 deletions

View File

@ -131,6 +131,9 @@ package org.jooq;

View File

@ -55,6 +55,8 @@ package org.jooq;

View File

@ -56,5 +56,6 @@ package org.jooq;

View File

@ -199,5 +199,6 @@ package org.jooq.impl;

View File

@ -271,6 +271,7 @@ final class Keywords {
static final Keyword K_PARTITION_BY = keyword("partition by");
static final Keyword K_PASSING = keyword("passing");
static final Keyword K_PERCENT = keyword("percent");
static final Keyword K_PERIOD = keyword("period");
static final Keyword K_PIVOT = keyword("pivot");
static final Keyword K_POSITION = keyword("position");
static final Keyword K_PRECEDING = keyword("preceding");
@ -363,7 +364,7 @@ final class Keywords {
static final Keyword K_VALUE = keyword("value");
static final Keyword K_VALUES = keyword("values");
static final Keyword K_VARCHAR = keyword("varchar");
static final Keyword K_VERSIONS_BETWEEN = keyword("versions between");
static final Keyword K_VERSIONS = keyword("versions");
static final Keyword K_VIEW = keyword("view");
static final Keyword K_WHEN = keyword("when");
static final Keyword K_WHERE = keyword("where");

View File

@ -127,6 +127,33 @@ package org.jooq.impl;

View File

@ -137,6 +137,10 @@ package org.jooq.impl;