This commit is contained in:
Lukas Eder 2020-02-04 10:40:26 +01:00
parent f12fa801da
commit 93dc41579f
4 changed files with 16 additions and 0 deletions

View File

@ -68,6 +68,7 @@ import static org.jooq.SQLDialect.SQLITE;
// ...
// ...
// ...
// ...
import java.sql.Timestamp;
import java.util.Collection;
@ -2830,6 +2831,14 @@ public interface Table<R extends Record> extends TableLike<R>, Named {

View File

@ -1019,6 +1019,11 @@ abstract class AbstractTable<R extends Record> extends AbstractNamed implements

View File

@ -167,6 +167,7 @@ final class Keywords {
static final Keyword K_FIRST = keyword("first");
static final Keyword K_FOLLOWING = keyword("following");
static final Keyword K_FOR = keyword("for");
static final Keyword K_FOR_PORTION_OF = keyword("for portion of");
static final Keyword K_FOR_SHARE = keyword("for share");
static final Keyword K_FOR_UPDATE = keyword("for update");
static final Keyword K_FORALL = keyword("forall");

View File

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