[#1147] Add integration tests for executing SQL generated using Factory.renderInlined() - regenerated the schema
This commit is contained in:
parent
a9e9ee04cb
commit
6af1d0dd5d
@ -8,7 +8,7 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the PUBLIC schema
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
@ -27,6 +27,7 @@ public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.hsqldb.generatedclasses.tables.records.TBookStoreRecord> UK_T_BOOK_STORE_NAME = createUniqueKey(org.jooq.test.hsqldb.generatedclasses.tables.TBookStore.T_BOOK_STORE, org.jooq.test.hsqldb.generatedclasses.tables.TBookStore.T_BOOK_STORE.NAME);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.hsqldb.generatedclasses.tables.records.TBookToBookStoreRecord> PK_B2BS = createUniqueKey(org.jooq.test.hsqldb.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE, org.jooq.test.hsqldb.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE.BOOK_STORE_NAME, org.jooq.test.hsqldb.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE.BOOK_ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.hsqldb.generatedclasses.tables.records.TBooleansRecord> PK_T_BOOLEANS = createUniqueKey(org.jooq.test.hsqldb.generatedclasses.tables.TBooleans.T_BOOLEANS, org.jooq.test.hsqldb.generatedclasses.tables.TBooleans.T_BOOLEANS.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord> PK_T_DATES = createUniqueKey(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES, org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.hsqldb.generatedclasses.tables.records.TIdentityPkRecord> PK_T_IDENTITY_PK = createUniqueKey(org.jooq.test.hsqldb.generatedclasses.tables.TIdentityPk.T_IDENTITY_PK, org.jooq.test.hsqldb.generatedclasses.tables.TIdentityPk.T_IDENTITY_PK.ID);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.hsqldb.generatedclasses.tables.records.TTriggersRecord> PK_T_TRIGGERS = createUniqueKey(org.jooq.test.hsqldb.generatedclasses.tables.TTriggers.T_TRIGGERS, org.jooq.test.hsqldb.generatedclasses.tables.TTriggers.T_TRIGGERS.ID_GENERATED);
|
||||
public static final org.jooq.UniqueKey<org.jooq.test.hsqldb.generatedclasses.tables.records.XTestCase_64_69Record> PK_X_TEST_CASE_64_69 = createUniqueKey(org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69, org.jooq.test.hsqldb.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69.ID);
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Public extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = -545540281;
|
||||
private static final long serialVersionUID = -1888174792;
|
||||
|
||||
/**
|
||||
* The singleton instance of PUBLIC
|
||||
@ -50,6 +50,7 @@ public class Public extends org.jooq.impl.SchemaImpl {
|
||||
org.jooq.test.hsqldb.generatedclasses.tables.TBookStore.T_BOOK_STORE,
|
||||
org.jooq.test.hsqldb.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE,
|
||||
org.jooq.test.hsqldb.generatedclasses.tables.TBooleans.T_BOOLEANS,
|
||||
org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES,
|
||||
org.jooq.test.hsqldb.generatedclasses.tables.TIdentity.T_IDENTITY,
|
||||
org.jooq.test.hsqldb.generatedclasses.tables.TIdentityPk.T_IDENTITY_PK,
|
||||
org.jooq.test.hsqldb.generatedclasses.tables.TTriggers.T_TRIGGERS,
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class PublicFactory extends org.jooq.util.hsqldb.HSQLDBFactory {
|
||||
|
||||
private static final long serialVersionUID = -645975704;
|
||||
private static final long serialVersionUID = 627466022;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
*
|
||||
* Convenience access to all stored procedures and functions in PUBLIC
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Routines {
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
*
|
||||
* Convenience access to all sequences in PUBLIC
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Sequences {
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ package org.jooq.test.hsqldb.generatedclasses;
|
||||
*
|
||||
* Convenience access to all tables in PUBLIC
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Tables {
|
||||
|
||||
@ -102,6 +102,11 @@ public final class Tables {
|
||||
*/
|
||||
public static org.jooq.test.hsqldb.generatedclasses.tables.TBooleans T_BOOLEANS = org.jooq.test.hsqldb.generatedclasses.tables.TBooleans.T_BOOLEANS;
|
||||
|
||||
/**
|
||||
* The table PUBLIC.T_DATES
|
||||
*/
|
||||
public static org.jooq.test.hsqldb.generatedclasses.tables.TDates T_DATES = org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES;
|
||||
|
||||
/**
|
||||
* The table PUBLIC.T_IDENTITY
|
||||
*/
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class BigDecimal extends org.jooq.impl.TableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.BigDecimalRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1568883712;
|
||||
private static final long serialVersionUID = 1138840126;
|
||||
|
||||
/**
|
||||
* The singleton instance of BIG_DECIMAL
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Class extends org.jooq.impl.TableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.ClassRecord> {
|
||||
|
||||
private static final long serialVersionUID = 342592484;
|
||||
private static final long serialVersionUID = -1274698138;
|
||||
|
||||
/**
|
||||
* The singleton instance of CLASS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Integer extends org.jooq.impl.TableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.IntegerRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1504602473;
|
||||
private static final long serialVersionUID = 1320799655;
|
||||
|
||||
/**
|
||||
* The singleton instance of INTEGER
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Long extends org.jooq.impl.TableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.LongRecord> {
|
||||
|
||||
private static final long serialVersionUID = -89405619;
|
||||
private static final long serialVersionUID = 799645903;
|
||||
|
||||
/**
|
||||
* The singleton instance of LONG
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Object extends org.jooq.impl.TableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.ObjectRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1563715845;
|
||||
private static final long serialVersionUID = 1543349433;
|
||||
|
||||
/**
|
||||
* The singleton instance of OBJECT
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class String extends org.jooq.impl.TableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.StringRecord> {
|
||||
|
||||
private static final long serialVersionUID = -918289726;
|
||||
private static final long serialVersionUID = -1073194240;
|
||||
|
||||
/**
|
||||
* The singleton instance of STRING
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class System extends org.jooq.impl.TableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.SystemRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1010346936;
|
||||
private static final long serialVersionUID = 19641418;
|
||||
|
||||
/**
|
||||
* The singleton instance of SYSTEM
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TArrays extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TArraysRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1552590371;
|
||||
private static final long serialVersionUID = 1485895323;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_ARRAYS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1842296828;
|
||||
private static final long serialVersionUID = -1813561858;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_AUTHOR
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = -690109157;
|
||||
private static final long serialVersionUID = 353643865;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_BOOK
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 988039311;
|
||||
private static final long serialVersionUID = -979493939;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_BOOK_STORE
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TBookToBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1996893737;
|
||||
private static final long serialVersionUID = 1958531627;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_BOOK_TO_BOOK_STORE
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TBooleansRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1789228263;
|
||||
private static final long serialVersionUID = 800594135;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_BOOLEANS
|
||||
|
||||
@ -0,0 +1,94 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TDates extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 754819383;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_DATES
|
||||
*/
|
||||
public static final org.jooq.test.hsqldb.generatedclasses.tables.TDates T_DATES = new org.jooq.test.hsqldb.generatedclasses.tables.TDates();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord> __RECORD_TYPE = org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*
|
||||
* PRIMARY KEY
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord, java.lang.Integer> ID = createField("ID", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord, java.sql.Date> D = createField("D", org.jooq.impl.SQLDataType.DATE, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord, java.sql.Time> T = createField("T", org.jooq.impl.SQLDataType.TIME, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord, java.sql.Timestamp> TS = createField("TS", org.jooq.impl.SQLDataType.TIMESTAMP, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord, java.lang.Integer> D_INT = createField("D_INT", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord, java.lang.Long> TS_BIGINT = createField("TS_BIGINT", org.jooq.impl.SQLDataType.BIGINT, this);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private TDates() {
|
||||
super("T_DATES", org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private TDates(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.hsqldb.generatedclasses.Public.PUBLIC, org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES);
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord> getMainKey() {
|
||||
return org.jooq.test.hsqldb.generatedclasses.Keys.PK_T_DATES;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord>>asList(org.jooq.test.hsqldb.generatedclasses.Keys.PK_T_DATES);
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.test.hsqldb.generatedclasses.tables.TDates as(java.lang.String alias) {
|
||||
return new org.jooq.test.hsqldb.generatedclasses.tables.TDates(alias);
|
||||
}
|
||||
}
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TIdentity extends org.jooq.impl.TableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TIdentityRecord> {
|
||||
|
||||
private static final long serialVersionUID = -514652971;
|
||||
private static final long serialVersionUID = -723433069;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_IDENTITY
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TIdentityPk extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TIdentityPkRecord> {
|
||||
|
||||
private static final long serialVersionUID = 146864970;
|
||||
private static final long serialVersionUID = -1845782580;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_IDENTITY_PK
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TTriggersRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1599022022;
|
||||
private static final long serialVersionUID = 1568407928;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_TRIGGERS
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.T_639NumbersTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = 874700418;
|
||||
private static final long serialVersionUID = -1425760704;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_639_NUMBERS_TABLE
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class T_658Ref extends org.jooq.impl.TableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.T_658RefRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1175273562;
|
||||
private static final long serialVersionUID = 866533288;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_658_REF
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.T_725LobTestRecord> {
|
||||
|
||||
private static final long serialVersionUID = -558984423;
|
||||
private static final long serialVersionUID = 1407441947;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_725_LOB_TEST
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class T_785 extends org.jooq.impl.TableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.T_785Record> {
|
||||
|
||||
private static final long serialVersionUID = 1766464922;
|
||||
private static final long serialVersionUID = -1524942632;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_785
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class T_937 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.T_937Record> {
|
||||
|
||||
private static final long serialVersionUID = 1000987983;
|
||||
private static final long serialVersionUID = 2132117073;
|
||||
|
||||
/**
|
||||
* The singleton instance of T_937
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class VAuthor extends org.jooq.impl.TableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.VAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1044554622;
|
||||
private static final long serialVersionUID = 279385984;
|
||||
|
||||
/**
|
||||
* The singleton instance of V_AUTHOR
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class VBook extends org.jooq.impl.TableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.VBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1192760878;
|
||||
private static final long serialVersionUID = 1518446804;
|
||||
|
||||
/**
|
||||
* The singleton instance of V_BOOK
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class VLibrary extends org.jooq.impl.TableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.VLibraryRecord> {
|
||||
|
||||
private static final long serialVersionUID = -204475600;
|
||||
private static final long serialVersionUID = -750530766;
|
||||
|
||||
/**
|
||||
* The singleton instance of V_LIBRARY
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.XTestCase_64_69Record> {
|
||||
|
||||
private static final long serialVersionUID = 1387597166;
|
||||
private static final long serialVersionUID = 1050664620;
|
||||
|
||||
/**
|
||||
* The singleton instance of X_TEST_CASE_64_69
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.XTestCase_71Record> {
|
||||
|
||||
private static final long serialVersionUID = 763462312;
|
||||
private static final long serialVersionUID = 213707434;
|
||||
|
||||
/**
|
||||
* The singleton instance of X_TEST_CASE_71
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.XTestCase_85Record> {
|
||||
|
||||
private static final long serialVersionUID = 633735861;
|
||||
private static final long serialVersionUID = 142657079;
|
||||
|
||||
/**
|
||||
* The singleton instance of X_TEST_CASE_85
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.XUnusedRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1492658580;
|
||||
private static final long serialVersionUID = -631112750;
|
||||
|
||||
/**
|
||||
* The singleton instance of X_UNUSED
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class BigDecimalRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.BigDecimalRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1389361460;
|
||||
private static final long serialVersionUID = 1451309006;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ClassRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.ClassRecord> {
|
||||
|
||||
private static final long serialVersionUID = -283151775;
|
||||
private static final long serialVersionUID = -1830261089;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class IntegerRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.IntegerRecord> {
|
||||
|
||||
private static final long serialVersionUID = 485601133;
|
||||
private static final long serialVersionUID = 2135317675;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class LongRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.LongRecord> {
|
||||
|
||||
private static final long serialVersionUID = 726757251;
|
||||
private static final long serialVersionUID = -1299870399;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ObjectRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.ObjectRecord> {
|
||||
|
||||
private static final long serialVersionUID = -393188925;
|
||||
private static final long serialVersionUID = 1397328769;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class StringRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.StringRecord> {
|
||||
|
||||
private static final long serialVersionUID = -238393085;
|
||||
private static final long serialVersionUID = 2137525953;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SystemRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.SystemRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1153263185;
|
||||
private static final long serialVersionUID = -1055921905;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TArraysRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TArraysRecord> {
|
||||
|
||||
private static final long serialVersionUID = 675573978;
|
||||
private static final long serialVersionUID = -156467620;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1774275703;
|
||||
private static final long serialVersionUID = 277295431;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1609182169;
|
||||
private static final long serialVersionUID = -1414765161;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1316209028;
|
||||
private static final long serialVersionUID = -1892568058;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TBookToBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 464739921;
|
||||
private static final long serialVersionUID = 1424793871;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TBooleansRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TBooleansRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1617654462;
|
||||
private static final long serialVersionUID = 771390912;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -0,0 +1,109 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TDatesRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TDatesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1248398810;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*
|
||||
* PRIMARY KEY
|
||||
*/
|
||||
public void setId(java.lang.Integer value) {
|
||||
setValue(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*
|
||||
* PRIMARY KEY
|
||||
*/
|
||||
public java.lang.Integer getId() {
|
||||
return getValue(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES.ID);
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public void setD(java.sql.Date value) {
|
||||
setValue(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES.D, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public java.sql.Date getD() {
|
||||
return getValue(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES.D);
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public void setT(java.sql.Time value) {
|
||||
setValue(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES.T, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public java.sql.Time getT() {
|
||||
return getValue(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES.T);
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public void setTs(java.sql.Timestamp value) {
|
||||
setValue(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES.TS, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public java.sql.Timestamp getTs() {
|
||||
return getValue(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES.TS);
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public void setDInt(java.lang.Integer value) {
|
||||
setValue(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES.D_INT, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public java.lang.Integer getDInt() {
|
||||
return getValue(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES.D_INT);
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public void setTsBigint(java.lang.Long value) {
|
||||
setValue(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES.TS_BIGINT, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public java.lang.Long getTsBigint() {
|
||||
return getValue(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES.TS_BIGINT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached TDatesRecord
|
||||
*/
|
||||
public TDatesRecord() {
|
||||
super(org.jooq.test.hsqldb.generatedclasses.tables.TDates.T_DATES);
|
||||
}
|
||||
}
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TIdentityPkRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TIdentityPkRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1486575105;
|
||||
private static final long serialVersionUID = -1192773185;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TIdentityRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TIdentityRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1785003898;
|
||||
private static final long serialVersionUID = -910006404;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.TTriggersRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1732064808;
|
||||
private static final long serialVersionUID = -1684327206;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.T_639NumbersTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1205860405;
|
||||
private static final long serialVersionUID = -1086903949;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class T_658RefRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.T_658RefRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1047599072;
|
||||
private static final long serialVersionUID = -1073378206;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.T_725LobTestRecord> {
|
||||
|
||||
private static final long serialVersionUID = 742896825;
|
||||
private static final long serialVersionUID = 5944951;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class T_785Record extends org.jooq.impl.TableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.T_785Record> {
|
||||
|
||||
private static final long serialVersionUID = 1203429243;
|
||||
private static final long serialVersionUID = -130135367;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class T_937Record extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.T_937Record> {
|
||||
|
||||
private static final long serialVersionUID = 1397413975;
|
||||
private static final long serialVersionUID = 494464917;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class VAuthorRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.VAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1574317518;
|
||||
private static final long serialVersionUID = 1789200976;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class VBookRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.VBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 219738826;
|
||||
private static final long serialVersionUID = 280660556;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class VLibraryRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.VLibraryRecord> {
|
||||
|
||||
private static final long serialVersionUID = 399026198;
|
||||
private static final long serialVersionUID = -1354463592;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.XTestCase_64_69Record> {
|
||||
|
||||
private static final long serialVersionUID = 605653466;
|
||||
private static final long serialVersionUID = 1336505240;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.XTestCase_71Record> {
|
||||
|
||||
private static final long serialVersionUID = -2046595009;
|
||||
private static final long serialVersionUID = 41388285;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.XTestCase_85Record> {
|
||||
|
||||
private static final long serialVersionUID = 896385476;
|
||||
private static final long serialVersionUID = -457535870;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,11 @@ package org.jooq.test.hsqldb.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.3"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.5"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.hsqldb.generatedclasses.tables.records.XUnusedRecord> {
|
||||
|
||||
private static final long serialVersionUID = 877110754;
|
||||
private static final long serialVersionUID = -752965404;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
Loading…
Reference in New Issue
Block a user