Release 3.0.0-RC2 - Regenerated H2 schemata
This commit is contained in:
parent
67a0528ad2
commit
a417ec7a89
@ -72,12 +72,10 @@ import org.jooq.test._.converters.Boolean_YES_NO_LC;
|
||||
import org.jooq.test._.converters.Boolean_YES_NO_UC;
|
||||
import org.jooq.test._.converters.Boolean_YN_LC;
|
||||
import org.jooq.test._.converters.Boolean_YN_UC;
|
||||
import org.jooq.test.h2.generatedclasses.ForeignKeys;
|
||||
import org.jooq.test.h2.generatedclasses.Identities;
|
||||
import org.jooq.test.h2.generatedclasses.Keys;
|
||||
import org.jooq.test.h2.generatedclasses.Routines;
|
||||
import org.jooq.test.h2.generatedclasses.Sequences;
|
||||
import org.jooq.test.h2.generatedclasses.Tables;
|
||||
import org.jooq.test.h2.generatedclasses.UniqueKeys;
|
||||
import org.jooq.test.h2.generatedclasses.tables.TArrays;
|
||||
import org.jooq.test.h2.generatedclasses.tables.TAuthor;
|
||||
import org.jooq.test.h2.generatedclasses.tables.TBook;
|
||||
@ -541,12 +539,12 @@ public class H2Test extends jOOQAbstractTest<
|
||||
|
||||
@Override
|
||||
protected ForeignKey<TBookRecord, TAuthorRecord> FK_T_BOOK_AUTHOR_ID() {
|
||||
return ForeignKeys.TBook.FK_T_BOOK_AUTHOR_ID;
|
||||
return Keys.FK_T_BOOK_AUTHOR_ID;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ForeignKey<TBookRecord, TAuthorRecord> FK_T_BOOK_CO_AUTHOR_ID() {
|
||||
return ForeignKeys.TBook.FK_T_BOOK_CO_AUTHOR_ID;
|
||||
return Keys.FK_T_BOOK_CO_AUTHOR_ID;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -830,12 +828,8 @@ public class H2Test extends jOOQAbstractTest<
|
||||
// [#2308] This test is not executed. It is a "compiler" test, checking
|
||||
// whether some generated artefacts can be extended
|
||||
|
||||
class MyForeignKeys extends ForeignKeys {}
|
||||
class MyForeignKeys_TBook extends ForeignKeys.TBook {}
|
||||
class MyIdentities extends Identities {}
|
||||
class MyKeys extends Keys {}
|
||||
class MySequences extends Sequences {}
|
||||
class MyTables extends Tables {}
|
||||
class MyUniqueKeys extends UniqueKeys {}
|
||||
class MyUniqueKeys_TBook extends UniqueKeys.TBook {}
|
||||
}
|
||||
}
|
||||
|
||||
@ -80,7 +80,7 @@ import org.jooq.test._.converters.Boolean_YES_NO_LC;
|
||||
import org.jooq.test._.converters.Boolean_YES_NO_UC;
|
||||
import org.jooq.test._.converters.Boolean_YN_LC;
|
||||
import org.jooq.test._.converters.Boolean_YN_UC;
|
||||
import org.jooq.test.h2.generatedclasses.ForeignKeys;
|
||||
import org.jooq.test.h2.generatedclasses.Keys;
|
||||
import org.jooq.test.h2.generatedclasses.Routines;
|
||||
import org.jooq.test.h2.generatedclasses.Sequences;
|
||||
import org.jooq.test.h2.generatedclasses.tables.records.TArraysRecord;
|
||||
@ -525,12 +525,12 @@ public class HSQLDBTest2 extends jOOQAbstractTest<
|
||||
|
||||
@Override
|
||||
protected ForeignKey<TBookRecord, TAuthorRecord> FK_T_BOOK_AUTHOR_ID() {
|
||||
return ForeignKeys.TBook.FK_T_BOOK_AUTHOR_ID;
|
||||
return Keys.FK_T_BOOK_AUTHOR_ID;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ForeignKey<TBookRecord, TAuthorRecord> FK_T_BOOK_CO_AUTHOR_ID() {
|
||||
return ForeignKeys.TBook.FK_T_BOOK_CO_AUTHOR_ID;
|
||||
return Keys.FK_T_BOOK_CO_AUTHOR_ID;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@ -1,48 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.test.h2.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the <code>PUBLIC</code>
|
||||
* schema
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class ForeignKeys {
|
||||
|
||||
public static class TBook extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord, org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord> FK_T_BOOK_AUTHOR_ID = createForeignKey(org.jooq.test.h2.generatedclasses.UniqueKeys.TAuthor.PK_T_AUTHOR, org.jooq.test.h2.generatedclasses.tables.TBook.T_BOOK, org.jooq.test.h2.generatedclasses.tables.TBook.AUTHOR_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord, org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord> FK_T_BOOK_CO_AUTHOR_ID = createForeignKey(org.jooq.test.h2.generatedclasses.UniqueKeys.TAuthor.PK_T_AUTHOR, org.jooq.test.h2.generatedclasses.tables.TBook.T_BOOK, org.jooq.test.h2.generatedclasses.tables.TBook.CO_AUTHOR_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord, org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord> FK_T_BOOK_LANGUAGE_ID = createForeignKey(org.jooq.test.h2.generatedclasses.UniqueKeys.TLanguage.PK_T_LANGUAGE, org.jooq.test.h2.generatedclasses.tables.TBook.T_BOOK, org.jooq.test.h2.generatedclasses.tables.TBook.LANGUAGE_ID);
|
||||
}
|
||||
|
||||
public static class TBookToBookStore extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord, org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord> FK_B2BS_BS_NAME = createForeignKey(org.jooq.test.h2.generatedclasses.UniqueKeys.TBookStore.UK_T_BOOK_STORE_NAME, org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE, org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord, org.jooq.test.h2.generatedclasses.tables.records.TBookRecord> FK_B2BS_B_ID = createForeignKey(org.jooq.test.h2.generatedclasses.UniqueKeys.TBook.PK_T_BOOK, org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE, org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_ID);
|
||||
}
|
||||
|
||||
public static class XUnused extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_UNUSED_SELF = createForeignKey(org.jooq.test.h2.generatedclasses.UniqueKeys.XUnused.PK_X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XUnused.X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XUnused.ID_REF, org.jooq.test.h2.generatedclasses.tables.XUnused.ID_REF, org.jooq.test.h2.generatedclasses.tables.XUnused.NAME_REF, org.jooq.test.h2.generatedclasses.tables.XUnused.NAME_REF);
|
||||
}
|
||||
|
||||
public static class XTestCase_64_69 extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_TEST_CASE_64_69A = createForeignKey(org.jooq.test.h2.generatedclasses.UniqueKeys.XUnused.PK_X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_TEST_CASE_64_69B = createForeignKey(org.jooq.test.h2.generatedclasses.UniqueKeys.XUnused.PK_X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID);
|
||||
}
|
||||
|
||||
public static class XTestCase_71 extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record, org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record> FK_X_TEST_CASE_71 = createForeignKey(org.jooq.test.h2.generatedclasses.UniqueKeys.XTestCase_64_69.PK_X_TEST_CASE_64_69, org.jooq.test.h2.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71, org.jooq.test.h2.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID);
|
||||
}
|
||||
|
||||
public static class XTestCase_85 extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_TEST_CASE_85 = createForeignKey(org.jooq.test.h2.generatedclasses.UniqueKeys.XUnused.PK_X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85, org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_UNUSED_ID, org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_UNUSED_ID, org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_UNUSED_NAME, org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_UNUSED_NAME);
|
||||
}
|
||||
|
||||
public static class XTestCase_2025 extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record, org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record> FK_X_TEST_CASE_2025_1 = createForeignKey(org.jooq.test.h2.generatedclasses.UniqueKeys.XTestCase_85.PK_X_TEST_CASE_85, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.X_TEST_CASE_2025, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record, org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record> FK_X_TEST_CASE_2025_2 = createForeignKey(org.jooq.test.h2.generatedclasses.UniqueKeys.XTestCase_71.PK_X_TEST_CASE_71, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.X_TEST_CASE_2025, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_TEST_CASE_2025_3 = createForeignKey(org.jooq.test.h2.generatedclasses.UniqueKeys.XUnused.PK_X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.X_TEST_CASE_2025, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_ID, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_ID, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_NAME, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_NAME);
|
||||
}
|
||||
}
|
||||
@ -1,29 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.test.h2.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling identity columns of the <code>PUBLIC</code> schema
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class Identities {
|
||||
|
||||
public static final org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord, java.lang.Integer> IDENTITY_T_IDENTITY_PK = Identities0.IDENTITY_T_IDENTITY_PK;
|
||||
public static final org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TIdentityRecord, java.lang.Integer> IDENTITY_T_IDENTITY = Identities0.IDENTITY_T_IDENTITY;
|
||||
public static final org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord, java.lang.Integer> IDENTITY_T_TRIGGERS = Identities0.IDENTITY_T_TRIGGERS;
|
||||
public static final org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.T_877Record, java.lang.Integer> IDENTITY_T_877 = Identities0.IDENTITY_T_877;
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// [#1459] distribute members to avoid static initialisers > 64kb
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
private static class Identities0 extends org.jooq.impl.AbstractKeys {
|
||||
static org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord, java.lang.Integer> IDENTITY_T_IDENTITY_PK = createIdentity(org.jooq.test.h2.generatedclasses.tables.TIdentityPk.T_IDENTITY_PK, org.jooq.test.h2.generatedclasses.tables.TIdentityPk.ID);
|
||||
static org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TIdentityRecord, java.lang.Integer> IDENTITY_T_IDENTITY = createIdentity(org.jooq.test.h2.generatedclasses.tables.TIdentity.T_IDENTITY, org.jooq.test.h2.generatedclasses.tables.TIdentity.ID);
|
||||
static org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord, java.lang.Integer> IDENTITY_T_TRIGGERS = createIdentity(org.jooq.test.h2.generatedclasses.tables.TTriggers.T_TRIGGERS, org.jooq.test.h2.generatedclasses.tables.TTriggers.ID_GENERATED);
|
||||
static org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.T_877Record, java.lang.Integer> IDENTITY_T_877 = createIdentity(org.jooq.test.h2.generatedclasses.tables.T_877.T_877, org.jooq.test.h2.generatedclasses.tables.T_877.ID);
|
||||
}
|
||||
}
|
||||
112
jOOQ-test/src/org/jooq/test/h2/generatedclasses/Keys.java
Normal file
112
jOOQ-test/src/org/jooq/test/h2/generatedclasses/Keys.java
Normal file
@ -0,0 +1,112 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.test.h2.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the <code>PUBLIC</code>
|
||||
* schema
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class Keys {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// IDENTITY definitions
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
public static final org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord, java.lang.Integer> IDENTITY_T_IDENTITY_PK = Identities0.IDENTITY_T_IDENTITY_PK;
|
||||
public static final org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TIdentityRecord, java.lang.Integer> IDENTITY_T_IDENTITY = Identities0.IDENTITY_T_IDENTITY;
|
||||
public static final org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord, java.lang.Integer> IDENTITY_T_TRIGGERS = Identities0.IDENTITY_T_TRIGGERS;
|
||||
public static final org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.T_877Record, java.lang.Integer> IDENTITY_T_877 = Identities0.IDENTITY_T_877;
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// UNIQUE and PRIMARY KEY definitions
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord> PK_T_IDENTITY_PK = UniqueKeys0.PK_T_IDENTITY_PK;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TDatesRecord> PK_T_DATES = UniqueKeys0.PK_T_DATES;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBooleansRecord> PK_T_BOOLEANS = UniqueKeys0.PK_T_BOOLEANS;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord> PK_T_TRIGGERS = UniqueKeys0.PK_T_TRIGGERS;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord> PK_T_LANGUAGE = UniqueKeys0.PK_T_LANGUAGE;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_725LobTestRecord> PK_T_725_LOB_TEST = UniqueKeys0.PK_T_725_LOB_TEST;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord> PK_T_AUTHOR = UniqueKeys0.PK_T_AUTHOR;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord> PK_T_BOOK = UniqueKeys0.PK_T_BOOK;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord> UK_T_BOOK_STORE_NAME = UniqueKeys0.UK_T_BOOK_STORE_NAME;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord> PK_B2BS = UniqueKeys0.PK_B2BS;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TArraysRecord> PK_T_ARRAYS = UniqueKeys0.PK_T_ARRAYS;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> PK_X_UNUSED = UniqueKeys0.PK_X_UNUSED;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> UK_X_UNUSED_ID = UniqueKeys0.UK_X_UNUSED_ID;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TExoticTypesRecord> PK_T_EXOTIC_TYPES = UniqueKeys0.PK_T_EXOTIC_TYPES;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_639NumbersTableRecord> PK_T_639_NUMBERS_TABLE = UniqueKeys0.PK_T_639_NUMBERS_TABLE;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record> PK_X_TEST_CASE_64_69 = UniqueKeys0.PK_X_TEST_CASE_64_69;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record> PK_X_TEST_CASE_71 = UniqueKeys0.PK_X_TEST_CASE_71;
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record> PK_X_TEST_CASE_85 = UniqueKeys0.PK_X_TEST_CASE_85;
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// FOREIGN KEY definitions
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord, org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord> FK_T_BOOK_AUTHOR_ID = ForeignKeys0.FK_T_BOOK_AUTHOR_ID;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord, org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord> FK_T_BOOK_CO_AUTHOR_ID = ForeignKeys0.FK_T_BOOK_CO_AUTHOR_ID;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord, org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord> FK_T_BOOK_LANGUAGE_ID = ForeignKeys0.FK_T_BOOK_LANGUAGE_ID;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord, org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord> FK_B2BS_BS_NAME = ForeignKeys0.FK_B2BS_BS_NAME;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord, org.jooq.test.h2.generatedclasses.tables.records.TBookRecord> FK_B2BS_B_ID = ForeignKeys0.FK_B2BS_B_ID;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_UNUSED_SELF = ForeignKeys0.FK_X_UNUSED_SELF;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_TEST_CASE_64_69A = ForeignKeys0.FK_X_TEST_CASE_64_69A;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_TEST_CASE_64_69B = ForeignKeys0.FK_X_TEST_CASE_64_69B;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record, org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record> FK_X_TEST_CASE_71 = ForeignKeys0.FK_X_TEST_CASE_71;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_TEST_CASE_85 = ForeignKeys0.FK_X_TEST_CASE_85;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record, org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record> FK_X_TEST_CASE_2025_1 = ForeignKeys0.FK_X_TEST_CASE_2025_1;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record, org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record> FK_X_TEST_CASE_2025_2 = ForeignKeys0.FK_X_TEST_CASE_2025_2;
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_TEST_CASE_2025_3 = ForeignKeys0.FK_X_TEST_CASE_2025_3;
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// [#1459] distribute members to avoid static initialisers > 64kb
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
private static class Identities0 extends org.jooq.impl.AbstractKeys {
|
||||
public static org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord, java.lang.Integer> IDENTITY_T_IDENTITY_PK = createIdentity(org.jooq.test.h2.generatedclasses.tables.TIdentityPk.T_IDENTITY_PK, org.jooq.test.h2.generatedclasses.tables.TIdentityPk.ID);
|
||||
public static org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TIdentityRecord, java.lang.Integer> IDENTITY_T_IDENTITY = createIdentity(org.jooq.test.h2.generatedclasses.tables.TIdentity.T_IDENTITY, org.jooq.test.h2.generatedclasses.tables.TIdentity.ID);
|
||||
public static org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord, java.lang.Integer> IDENTITY_T_TRIGGERS = createIdentity(org.jooq.test.h2.generatedclasses.tables.TTriggers.T_TRIGGERS, org.jooq.test.h2.generatedclasses.tables.TTriggers.ID_GENERATED);
|
||||
public static org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.T_877Record, java.lang.Integer> IDENTITY_T_877 = createIdentity(org.jooq.test.h2.generatedclasses.tables.T_877.T_877, org.jooq.test.h2.generatedclasses.tables.T_877.ID);
|
||||
}
|
||||
|
||||
private static class UniqueKeys0 extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord> PK_T_IDENTITY_PK = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TIdentityPk.T_IDENTITY_PK, org.jooq.test.h2.generatedclasses.tables.TIdentityPk.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TDatesRecord> PK_T_DATES = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TDates.T_DATES, org.jooq.test.h2.generatedclasses.tables.TDates.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBooleansRecord> PK_T_BOOLEANS = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TBooleans.T_BOOLEANS, org.jooq.test.h2.generatedclasses.tables.TBooleans.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord> PK_T_TRIGGERS = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TTriggers.T_TRIGGERS, org.jooq.test.h2.generatedclasses.tables.TTriggers.ID_GENERATED);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord> PK_T_LANGUAGE = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TLanguage.T_LANGUAGE, org.jooq.test.h2.generatedclasses.tables.TLanguage.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_725LobTestRecord> PK_T_725_LOB_TEST = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.T_725LobTest.T_725_LOB_TEST, org.jooq.test.h2.generatedclasses.tables.T_725LobTest.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord> PK_T_AUTHOR = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TAuthor.T_AUTHOR, org.jooq.test.h2.generatedclasses.tables.TAuthor.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord> PK_T_BOOK = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TBook.T_BOOK, org.jooq.test.h2.generatedclasses.tables.TBook.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord> UK_T_BOOK_STORE_NAME = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TBookStore.T_BOOK_STORE, org.jooq.test.h2.generatedclasses.tables.TBookStore.NAME);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord> PK_B2BS = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE, org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME, org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TArraysRecord> PK_T_ARRAYS = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TArrays.T_ARRAYS, org.jooq.test.h2.generatedclasses.tables.TArrays.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> PK_X_UNUSED = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.XUnused.X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XUnused.ID, org.jooq.test.h2.generatedclasses.tables.XUnused.NAME);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> UK_X_UNUSED_ID = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.XUnused.X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XUnused.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TExoticTypesRecord> PK_T_EXOTIC_TYPES = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TExoticTypes.T_EXOTIC_TYPES, org.jooq.test.h2.generatedclasses.tables.TExoticTypes.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_639NumbersTableRecord> PK_T_639_NUMBERS_TABLE = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.T_639NumbersTable.T_639_NUMBERS_TABLE, org.jooq.test.h2.generatedclasses.tables.T_639NumbersTable.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record> PK_X_TEST_CASE_64_69 = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record> PK_X_TEST_CASE_71 = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71, org.jooq.test.h2.generatedclasses.tables.XTestCase_71.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record> PK_X_TEST_CASE_85 = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85, org.jooq.test.h2.generatedclasses.tables.XTestCase_85.ID);
|
||||
}
|
||||
|
||||
private static class ForeignKeys0 extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord, org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord> FK_T_BOOK_AUTHOR_ID = createForeignKey(org.jooq.test.h2.generatedclasses.Keys.PK_T_AUTHOR, org.jooq.test.h2.generatedclasses.tables.TBook.T_BOOK, org.jooq.test.h2.generatedclasses.tables.TBook.AUTHOR_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord, org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord> FK_T_BOOK_CO_AUTHOR_ID = createForeignKey(org.jooq.test.h2.generatedclasses.Keys.PK_T_AUTHOR, org.jooq.test.h2.generatedclasses.tables.TBook.T_BOOK, org.jooq.test.h2.generatedclasses.tables.TBook.CO_AUTHOR_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord, org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord> FK_T_BOOK_LANGUAGE_ID = createForeignKey(org.jooq.test.h2.generatedclasses.Keys.PK_T_LANGUAGE, org.jooq.test.h2.generatedclasses.tables.TBook.T_BOOK, org.jooq.test.h2.generatedclasses.tables.TBook.LANGUAGE_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord, org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord> FK_B2BS_BS_NAME = createForeignKey(org.jooq.test.h2.generatedclasses.Keys.UK_T_BOOK_STORE_NAME, org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE, org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord, org.jooq.test.h2.generatedclasses.tables.records.TBookRecord> FK_B2BS_B_ID = createForeignKey(org.jooq.test.h2.generatedclasses.Keys.PK_T_BOOK, org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE, org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_UNUSED_SELF = createForeignKey(org.jooq.test.h2.generatedclasses.Keys.PK_X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XUnused.X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XUnused.ID_REF, org.jooq.test.h2.generatedclasses.tables.XUnused.ID_REF, org.jooq.test.h2.generatedclasses.tables.XUnused.NAME_REF, org.jooq.test.h2.generatedclasses.tables.XUnused.NAME_REF);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_TEST_CASE_64_69A = createForeignKey(org.jooq.test.h2.generatedclasses.Keys.PK_X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_TEST_CASE_64_69B = createForeignKey(org.jooq.test.h2.generatedclasses.Keys.PK_X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.UNUSED_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record, org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record> FK_X_TEST_CASE_71 = createForeignKey(org.jooq.test.h2.generatedclasses.Keys.PK_X_TEST_CASE_64_69, org.jooq.test.h2.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71, org.jooq.test.h2.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_TEST_CASE_85 = createForeignKey(org.jooq.test.h2.generatedclasses.Keys.PK_X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85, org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_UNUSED_ID, org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_UNUSED_ID, org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_UNUSED_NAME, org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_UNUSED_NAME);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record, org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record> FK_X_TEST_CASE_2025_1 = createForeignKey(org.jooq.test.h2.generatedclasses.Keys.PK_X_TEST_CASE_85, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.X_TEST_CASE_2025, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record, org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record> FK_X_TEST_CASE_2025_2 = createForeignKey(org.jooq.test.h2.generatedclasses.Keys.PK_X_TEST_CASE_71, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.X_TEST_CASE_2025, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_ID);
|
||||
public static final org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record, org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> FK_X_TEST_CASE_2025_3 = createForeignKey(org.jooq.test.h2.generatedclasses.Keys.PK_X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.X_TEST_CASE_2025, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_ID, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_ID, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_NAME, org.jooq.test.h2.generatedclasses.tables.XTestCase_2025.REF_NAME);
|
||||
}
|
||||
}
|
||||
@ -1,82 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.test.h2.generatedclasses;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A class modelling unique keys of tables of the <code>PUBLIC</code> schema
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class UniqueKeys {
|
||||
|
||||
public static class TIdentityPk extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord> PK_T_IDENTITY_PK = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TIdentityPk.T_IDENTITY_PK, org.jooq.test.h2.generatedclasses.tables.TIdentityPk.ID);
|
||||
}
|
||||
|
||||
public static class TDates extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TDatesRecord> PK_T_DATES = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TDates.T_DATES, org.jooq.test.h2.generatedclasses.tables.TDates.ID);
|
||||
}
|
||||
|
||||
public static class TBooleans extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBooleansRecord> PK_T_BOOLEANS = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TBooleans.T_BOOLEANS, org.jooq.test.h2.generatedclasses.tables.TBooleans.ID);
|
||||
}
|
||||
|
||||
public static class TTriggers extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord> PK_T_TRIGGERS = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TTriggers.T_TRIGGERS, org.jooq.test.h2.generatedclasses.tables.TTriggers.ID_GENERATED);
|
||||
}
|
||||
|
||||
public static class TLanguage extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord> PK_T_LANGUAGE = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TLanguage.T_LANGUAGE, org.jooq.test.h2.generatedclasses.tables.TLanguage.ID);
|
||||
}
|
||||
|
||||
public static class T_725LobTest extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_725LobTestRecord> PK_T_725_LOB_TEST = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.T_725LobTest.T_725_LOB_TEST, org.jooq.test.h2.generatedclasses.tables.T_725LobTest.ID);
|
||||
}
|
||||
|
||||
public static class TAuthor extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord> PK_T_AUTHOR = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TAuthor.T_AUTHOR, org.jooq.test.h2.generatedclasses.tables.TAuthor.ID);
|
||||
}
|
||||
|
||||
public static class TBook extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord> PK_T_BOOK = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TBook.T_BOOK, org.jooq.test.h2.generatedclasses.tables.TBook.ID);
|
||||
}
|
||||
|
||||
public static class TBookStore extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord> UK_T_BOOK_STORE_NAME = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TBookStore.T_BOOK_STORE, org.jooq.test.h2.generatedclasses.tables.TBookStore.NAME);
|
||||
}
|
||||
|
||||
public static class TBookToBookStore extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord> PK_B2BS = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE, org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME, org.jooq.test.h2.generatedclasses.tables.TBookToBookStore.BOOK_ID);
|
||||
}
|
||||
|
||||
public static class TArrays extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TArraysRecord> PK_T_ARRAYS = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TArrays.T_ARRAYS, org.jooq.test.h2.generatedclasses.tables.TArrays.ID);
|
||||
}
|
||||
|
||||
public static class XUnused extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> PK_X_UNUSED = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.XUnused.X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XUnused.ID, org.jooq.test.h2.generatedclasses.tables.XUnused.NAME);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> UK_X_UNUSED_ID = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.XUnused.X_UNUSED, org.jooq.test.h2.generatedclasses.tables.XUnused.ID);
|
||||
}
|
||||
|
||||
public static class TExoticTypes extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TExoticTypesRecord> PK_T_EXOTIC_TYPES = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.TExoticTypes.T_EXOTIC_TYPES, org.jooq.test.h2.generatedclasses.tables.TExoticTypes.ID);
|
||||
}
|
||||
|
||||
public static class T_639NumbersTable extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_639NumbersTableRecord> PK_T_639_NUMBERS_TABLE = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.T_639NumbersTable.T_639_NUMBERS_TABLE, org.jooq.test.h2.generatedclasses.tables.T_639NumbersTable.ID);
|
||||
}
|
||||
|
||||
public static class XTestCase_64_69 extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record> PK_X_TEST_CASE_64_69 = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69, org.jooq.test.h2.generatedclasses.tables.XTestCase_64_69.ID);
|
||||
}
|
||||
|
||||
public static class XTestCase_71 extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record> PK_X_TEST_CASE_71 = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71, org.jooq.test.h2.generatedclasses.tables.XTestCase_71.ID);
|
||||
}
|
||||
|
||||
public static class XTestCase_85 extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record> PK_X_TEST_CASE_85 = createUniqueKey(org.jooq.test.h2.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85, org.jooq.test.h2.generatedclasses.tables.XTestCase_85.ID);
|
||||
}
|
||||
}
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TArrays extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.TArraysRecord> {
|
||||
|
||||
private static final long serialVersionUID = -784512905;
|
||||
private static final long serialVersionUID = 235826199;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_ARRAYS</code>
|
||||
@ -56,7 +56,7 @@ public class TArrays extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.g
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TArraysRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.TArrays.PK_T_ARRAYS;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_T_ARRAYS;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -64,6 +64,6 @@ public class TArrays extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.g
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TArraysRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TArraysRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.TArrays.PK_T_ARRAYS);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TArraysRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_T_ARRAYS);
|
||||
}
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1454982358;
|
||||
private static final long serialVersionUID = 1622050326;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_AUTHOR</code>
|
||||
@ -68,7 +68,7 @@ public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.g
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.TAuthor.PK_T_AUTHOR;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_T_AUTHOR;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -76,6 +76,6 @@ public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.g
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.TAuthor.PK_T_AUTHOR);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TAuthorRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_T_AUTHOR);
|
||||
}
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 528149442;
|
||||
private static final long serialVersionUID = -107810741;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_BOOK</code>
|
||||
@ -93,7 +93,7 @@ public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.gen
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.TBook.PK_T_BOOK;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_T_BOOK;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -101,7 +101,7 @@ public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.gen
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.TBook.PK_T_BOOK);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_T_BOOK);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -109,7 +109,7 @@ public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.gen
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord, ?>> getReferences() {
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord, ?>>asList(org.jooq.test.h2.generatedclasses.ForeignKeys.TBook.FK_T_BOOK_AUTHOR_ID, org.jooq.test.h2.generatedclasses.ForeignKeys.TBook.FK_T_BOOK_CO_AUTHOR_ID, org.jooq.test.h2.generatedclasses.ForeignKeys.TBook.FK_T_BOOK_LANGUAGE_ID);
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookRecord, ?>>asList(org.jooq.test.h2.generatedclasses.Keys.FK_T_BOOK_AUTHOR_ID, org.jooq.test.h2.generatedclasses.Keys.FK_T_BOOK_CO_AUTHOR_ID, org.jooq.test.h2.generatedclasses.Keys.FK_T_BOOK_LANGUAGE_ID);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 336577971;
|
||||
private static final long serialVersionUID = -131240199;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_BOOK_STORE</code>
|
||||
@ -43,7 +43,7 @@ public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.TBookStore.UK_T_BOOK_STORE_NAME;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.UK_T_BOOK_STORE_NAME;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -51,6 +51,6 @@ public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.TBookStore.UK_T_BOOK_STORE_NAME);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookStoreRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.UK_T_BOOK_STORE_NAME);
|
||||
}
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1047331469;
|
||||
private static final long serialVersionUID = 1371840803;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_BOOK_TO_BOOK_STORE</code>
|
||||
@ -53,7 +53,7 @@ public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.TBookToBookStore.PK_B2BS;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_B2BS;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -61,7 +61,7 @@ public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.TBookToBookStore.PK_B2BS);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_B2BS);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -69,6 +69,6 @@ public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord, ?>> getReferences() {
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord, ?>>asList(org.jooq.test.h2.generatedclasses.ForeignKeys.TBookToBookStore.FK_B2BS_BS_NAME, org.jooq.test.h2.generatedclasses.ForeignKeys.TBookToBookStore.FK_B2BS_B_ID);
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.TBookToBookStoreRecord, ?>>asList(org.jooq.test.h2.generatedclasses.Keys.FK_B2BS_BS_NAME, org.jooq.test.h2.generatedclasses.Keys.FK_B2BS_B_ID);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.TBooleansRecord> {
|
||||
|
||||
private static final long serialVersionUID = -2102547315;
|
||||
private static final long serialVersionUID = 1570944077;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_BOOLEANS</code>
|
||||
@ -91,7 +91,7 @@ public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBooleansRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.TBooleans.PK_T_BOOLEANS;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_T_BOOLEANS;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -99,6 +99,6 @@ public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBooleansRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBooleansRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.TBooleans.PK_T_BOOLEANS);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TBooleansRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_T_BOOLEANS);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TDates extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.TDatesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 762343884;
|
||||
private static final long serialVersionUID = -1890517092;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_DATES</code>
|
||||
@ -66,7 +66,7 @@ public class TDates extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.ge
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TDatesRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.TDates.PK_T_DATES;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_T_DATES;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -74,6 +74,6 @@ public class TDates extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.ge
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TDatesRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TDatesRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.TDates.PK_T_DATES);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TDatesRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_T_DATES);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TExoticTypes extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.TExoticTypesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -742997082;
|
||||
private static final long serialVersionUID = 1243960444;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_EXOTIC_TYPES</code>
|
||||
@ -46,7 +46,7 @@ public class TExoticTypes extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TExoticTypesRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.TExoticTypes.PK_T_EXOTIC_TYPES;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_T_EXOTIC_TYPES;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -54,6 +54,6 @@ public class TExoticTypes extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TExoticTypesRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TExoticTypesRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.TExoticTypes.PK_T_EXOTIC_TYPES);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TExoticTypesRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_T_EXOTIC_TYPES);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TIdentity extends org.jooq.impl.TableImpl<org.jooq.test.h2.generatedclasses.tables.records.TIdentityRecord> {
|
||||
|
||||
private static final long serialVersionUID = 717184357;
|
||||
private static final long serialVersionUID = -2130637555;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_IDENTITY</code>
|
||||
@ -46,6 +46,6 @@ public class TIdentity extends org.jooq.impl.TableImpl<org.jooq.test.h2.generate
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TIdentityRecord, java.lang.Integer> getIdentity() {
|
||||
return org.jooq.test.h2.generatedclasses.Identities.IDENTITY_T_IDENTITY;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.IDENTITY_T_IDENTITY;
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TIdentityPk extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1247819141;
|
||||
private static final long serialVersionUID = 1773004685;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_IDENTITY_PK</code>
|
||||
@ -46,7 +46,7 @@ public class TIdentityPk extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord, java.lang.Integer> getIdentity() {
|
||||
return org.jooq.test.h2.generatedclasses.Identities.IDENTITY_T_IDENTITY_PK;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.IDENTITY_T_IDENTITY_PK;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -54,7 +54,7 @@ public class TIdentityPk extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.TIdentityPk.PK_T_IDENTITY_PK;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_T_IDENTITY_PK;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -62,6 +62,6 @@ public class TIdentityPk extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.TIdentityPk.PK_T_IDENTITY_PK);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TIdentityPkRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_T_IDENTITY_PK);
|
||||
}
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TLanguage extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1043812567;
|
||||
private static final long serialVersionUID = -1575157513;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_LANGUAGE</code>
|
||||
@ -58,7 +58,7 @@ public class TLanguage extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.TLanguage.PK_T_LANGUAGE;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_T_LANGUAGE;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -66,6 +66,6 @@ public class TLanguage extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.TLanguage.PK_T_LANGUAGE);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TLanguageRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_T_LANGUAGE);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1044912881;
|
||||
private static final long serialVersionUID = -1950113463;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_TRIGGERS</code>
|
||||
@ -51,7 +51,7 @@ public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord, java.lang.Integer> getIdentity() {
|
||||
return org.jooq.test.h2.generatedclasses.Identities.IDENTITY_T_TRIGGERS;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.IDENTITY_T_TRIGGERS;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -59,7 +59,7 @@ public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.TTriggers.PK_T_TRIGGERS;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_T_TRIGGERS;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -67,6 +67,6 @@ public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.TTriggers.PK_T_TRIGGERS);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.TTriggersRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_T_TRIGGERS);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.T_639NumbersTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = 538706581;
|
||||
private static final long serialVersionUID = 145399557;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_639_NUMBERS_TABLE</code>
|
||||
@ -101,7 +101,7 @@ public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_639NumbersTableRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.T_639NumbersTable.PK_T_639_NUMBERS_TABLE;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_T_639_NUMBERS_TABLE;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -109,6 +109,6 @@ public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_639NumbersTableRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_639NumbersTableRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.T_639NumbersTable.PK_T_639_NUMBERS_TABLE);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_639NumbersTableRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_T_639_NUMBERS_TABLE);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.T_725LobTestRecord> {
|
||||
|
||||
private static final long serialVersionUID = -74668390;
|
||||
private static final long serialVersionUID = 77730976;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_725_LOB_TEST</code>
|
||||
@ -46,7 +46,7 @@ public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_725LobTestRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.T_725LobTest.PK_T_725_LOB_TEST;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_T_725_LOB_TEST;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -54,6 +54,6 @@ public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_725LobTestRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_725LobTestRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.T_725LobTest.PK_T_725_LOB_TEST);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.T_725LobTestRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_T_725_LOB_TEST);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_877 extends org.jooq.impl.TableImpl<org.jooq.test.h2.generatedclasses.tables.records.T_877Record> {
|
||||
|
||||
private static final long serialVersionUID = -375422012;
|
||||
private static final long serialVersionUID = -921284516;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.T_877</code>
|
||||
@ -41,6 +41,6 @@ public class T_877 extends org.jooq.impl.TableImpl<org.jooq.test.h2.generatedcla
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.Identity<org.jooq.test.h2.generatedclasses.tables.records.T_877Record, java.lang.Integer> getIdentity() {
|
||||
return org.jooq.test.h2.generatedclasses.Identities.IDENTITY_T_877;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.IDENTITY_T_877;
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XTestCase_2025 extends org.jooq.impl.TableImpl<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record> {
|
||||
|
||||
private static final long serialVersionUID = 658300099;
|
||||
private static final long serialVersionUID = 1339186555;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.X_TEST_CASE_2025</code>
|
||||
@ -46,6 +46,6 @@ public class XTestCase_2025 extends org.jooq.impl.TableImpl<org.jooq.test.h2.gen
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record, ?>> getReferences() {
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record, ?>>asList(org.jooq.test.h2.generatedclasses.ForeignKeys.XTestCase_2025.FK_X_TEST_CASE_2025_1, org.jooq.test.h2.generatedclasses.ForeignKeys.XTestCase_2025.FK_X_TEST_CASE_2025_2, org.jooq.test.h2.generatedclasses.ForeignKeys.XTestCase_2025.FK_X_TEST_CASE_2025_3);
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_2025Record, ?>>asList(org.jooq.test.h2.generatedclasses.Keys.FK_X_TEST_CASE_2025_1, org.jooq.test.h2.generatedclasses.Keys.FK_X_TEST_CASE_2025_2, org.jooq.test.h2.generatedclasses.Keys.FK_X_TEST_CASE_2025_3);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record> {
|
||||
|
||||
private static final long serialVersionUID = 1556768732;
|
||||
private static final long serialVersionUID = 1597936536;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.X_TEST_CASE_64_69</code>
|
||||
@ -46,7 +46,7 @@ public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.t
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.XTestCase_64_69.PK_X_TEST_CASE_64_69;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_X_TEST_CASE_64_69;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -54,7 +54,7 @@ public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.t
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.XTestCase_64_69.PK_X_TEST_CASE_64_69);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_X_TEST_CASE_64_69);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -62,6 +62,6 @@ public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.t
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record, ?>> getReferences() {
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record, ?>>asList(org.jooq.test.h2.generatedclasses.ForeignKeys.XTestCase_64_69.FK_X_TEST_CASE_64_69A, org.jooq.test.h2.generatedclasses.ForeignKeys.XTestCase_64_69.FK_X_TEST_CASE_64_69B);
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_64_69Record, ?>>asList(org.jooq.test.h2.generatedclasses.Keys.FK_X_TEST_CASE_64_69A, org.jooq.test.h2.generatedclasses.Keys.FK_X_TEST_CASE_64_69B);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record> {
|
||||
|
||||
private static final long serialVersionUID = 1865182283;
|
||||
private static final long serialVersionUID = 108639504;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.X_TEST_CASE_71</code>
|
||||
@ -46,7 +46,7 @@ public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.XTestCase_71.PK_X_TEST_CASE_71;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_X_TEST_CASE_71;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -54,7 +54,7 @@ public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.XTestCase_71.PK_X_TEST_CASE_71);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_X_TEST_CASE_71);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -62,6 +62,6 @@ public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record, ?>> getReferences() {
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record, ?>>asList(org.jooq.test.h2.generatedclasses.ForeignKeys.XTestCase_71.FK_X_TEST_CASE_71);
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_71Record, ?>>asList(org.jooq.test.h2.generatedclasses.Keys.FK_X_TEST_CASE_71);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record> {
|
||||
|
||||
private static final long serialVersionUID = 237064449;
|
||||
private static final long serialVersionUID = -2146819797;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.X_TEST_CASE_85</code>
|
||||
@ -51,7 +51,7 @@ public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.XTestCase_85.PK_X_TEST_CASE_85;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_X_TEST_CASE_85;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -59,7 +59,7 @@ public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.XTestCase_85.PK_X_TEST_CASE_85);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_X_TEST_CASE_85);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -67,6 +67,6 @@ public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record, ?>> getReferences() {
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record, ?>>asList(org.jooq.test.h2.generatedclasses.ForeignKeys.XTestCase_85.FK_X_TEST_CASE_85);
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XTestCase_85Record, ?>>asList(org.jooq.test.h2.generatedclasses.Keys.FK_X_TEST_CASE_85);
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.h2.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> {
|
||||
|
||||
private static final long serialVersionUID = -81075859;
|
||||
private static final long serialVersionUID = -1004101056;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>PUBLIC.X_UNUSED</code>
|
||||
@ -116,7 +116,7 @@ public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.g
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord> getPrimaryKey() {
|
||||
return org.jooq.test.h2.generatedclasses.UniqueKeys.XUnused.PK_X_UNUSED;
|
||||
return org.jooq.test.h2.generatedclasses.Keys.PK_X_UNUSED;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -124,7 +124,7 @@ public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.g
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord>>asList(org.jooq.test.h2.generatedclasses.UniqueKeys.XUnused.PK_X_UNUSED, org.jooq.test.h2.generatedclasses.UniqueKeys.XUnused.UK_X_UNUSED_ID);
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord>>asList(org.jooq.test.h2.generatedclasses.Keys.PK_X_UNUSED, org.jooq.test.h2.generatedclasses.Keys.UK_X_UNUSED_ID);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -132,6 +132,6 @@ public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.h2.g
|
||||
*/
|
||||
@Override
|
||||
public java.util.List<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord, ?>> getReferences() {
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord, ?>>asList(org.jooq.test.h2.generatedclasses.ForeignKeys.XUnused.FK_X_UNUSED_SELF);
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.test.h2.generatedclasses.tables.records.XUnusedRecord, ?>>asList(org.jooq.test.h2.generatedclasses.Keys.FK_X_UNUSED_SELF);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user