[#1932] Generate Javadocs for Table constructors
This commit is contained in:
parent
b3cd1c5cdf
commit
ecc9a835b7
@ -1356,7 +1356,7 @@ public class DefaultGenerator extends AbstractGenerator {
|
||||
// [#1255] With instance fields, the table constructor may
|
||||
// be public, as tables are no longer singletons
|
||||
if (generateInstanceFields()) {
|
||||
out.println();
|
||||
out.tab(1).javadoc("Create a <code>%s</code> table reference", table.getQualifiedOutputName());
|
||||
out.tab(1).println("public %s() {", className);
|
||||
}
|
||||
else {
|
||||
@ -1377,7 +1377,7 @@ public class DefaultGenerator extends AbstractGenerator {
|
||||
// [#1730] Prevent compilation errors
|
||||
final String schemaId = schema.isDefaultSchema() ? "null" : getStrategy().getFullJavaIdentifier(schema);
|
||||
|
||||
out.println();
|
||||
out.tab(1).javadoc("Create an aliased <code>%s</code> table reference", table.getQualifiedOutputName());
|
||||
out.tab(1).println("public %s(%s alias) {", className, String.class);
|
||||
out.tab(2).println("super(alias, %s, %s);", schemaId, fullTableId);
|
||||
out.tab(1).println("}");
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.multi_schema.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1800135844;
|
||||
private static final long serialVersionUID = 309943149;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>MULTI_SCHEMA.T_AUTHOR</code>
|
||||
@ -59,10 +59,16 @@ public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.orac
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TAuthorRecord, java.lang.Object> ADDRESS = createField("ADDRESS", org.jooq.util.oracle.OracleDataType.getDefaultDataType("U_ADDRESS_TYPE"), this);
|
||||
|
||||
/**
|
||||
* Create a <code>MULTI_SCHEMA.T_AUTHOR</code> table reference
|
||||
*/
|
||||
public TAuthor() {
|
||||
super("T_AUTHOR", org.jooq.test.oracle.generatedclasses.multi_schema.MultiSchema.MULTI_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>MULTI_SCHEMA.T_AUTHOR</code> table reference
|
||||
*/
|
||||
public TAuthor(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.multi_schema.MultiSchema.MULTI_SCHEMA, org.jooq.test.oracle.generatedclasses.multi_schema.tables.TAuthor.T_AUTHOR);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.multi_schema.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 2121808699;
|
||||
private static final long serialVersionUID = 1246139238;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>MULTI_SCHEMA.T_BOOK</code>
|
||||
@ -89,10 +89,16 @@ public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TBookRecord, byte[]> CONTENT_PDF = createField("CONTENT_PDF", org.jooq.impl.SQLDataType.BLOB, this);
|
||||
|
||||
/**
|
||||
* Create a <code>MULTI_SCHEMA.T_BOOK</code> table reference
|
||||
*/
|
||||
public TBook() {
|
||||
super("T_BOOK", org.jooq.test.oracle.generatedclasses.multi_schema.MultiSchema.MULTI_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>MULTI_SCHEMA.T_BOOK</code> table reference
|
||||
*/
|
||||
public TBook(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.multi_schema.MultiSchema.MULTI_SCHEMA, org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBook.T_BOOK);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.multi_schema.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBookSale extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TBookSaleRecord> {
|
||||
|
||||
private static final long serialVersionUID = 848140511;
|
||||
private static final long serialVersionUID = -1320461060;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>MULTI_SCHEMA.T_BOOK_SALE</code>
|
||||
@ -63,10 +63,16 @@ public class TBookSale extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.or
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.multi_schema.tables.records.TBookSaleRecord, java.math.BigDecimal> SOLD_FOR = createField("SOLD_FOR", org.jooq.impl.SQLDataType.NUMERIC, this);
|
||||
|
||||
/**
|
||||
* Create a <code>MULTI_SCHEMA.T_BOOK_SALE</code> table reference
|
||||
*/
|
||||
public TBookSale() {
|
||||
super("T_BOOK_SALE", org.jooq.test.oracle.generatedclasses.multi_schema.MultiSchema.MULTI_SCHEMA);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>MULTI_SCHEMA.T_BOOK_SALE</code> table reference
|
||||
*/
|
||||
public TBookSale(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.multi_schema.MultiSchema.MULTI_SCHEMA, org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBookSale.T_BOOK_SALE);
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class MLibrary extends org.jooq.impl.TableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.MLibraryRecord> {
|
||||
|
||||
private static final long serialVersionUID = 785976198;
|
||||
private static final long serialVersionUID = 1002758703;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.M_LIBRARY</code>
|
||||
@ -36,10 +36,16 @@ public class MLibrary extends org.jooq.impl.TableImpl<org.jooq.test.oracle.gener
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.MLibraryRecord, java.lang.String> TITLE = createField("TITLE", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.M_LIBRARY</code> table reference
|
||||
*/
|
||||
public MLibrary() {
|
||||
super("M_LIBRARY", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.M_LIBRARY</code> table reference
|
||||
*/
|
||||
public MLibrary(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.MLibrary.M_LIBRARY);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TArrays extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.TArraysRecord> {
|
||||
|
||||
private static final long serialVersionUID = -577633693;
|
||||
private static final long serialVersionUID = 613166462;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.T_ARRAYS</code>
|
||||
@ -51,10 +51,16 @@ public class TArrays extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.orac
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.TArraysRecord, org.jooq.test.oracle.generatedclasses.test.udt.records.UDateArrayRecord> DATE_ARRAY = createField("DATE_ARRAY", org.jooq.impl.SQLDataType.DATE.asArrayDataType(org.jooq.test.oracle.generatedclasses.test.udt.records.UDateArrayRecord.class), this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.T_ARRAYS</code> table reference
|
||||
*/
|
||||
public TArrays() {
|
||||
super("T_ARRAYS", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.T_ARRAYS</code> table reference
|
||||
*/
|
||||
public TArrays(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.TArrays.T_ARRAYS);
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.TAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1481963947;
|
||||
private static final long serialVersionUID = 1371657944;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.T_AUTHOR</code>
|
||||
@ -58,10 +58,16 @@ public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.orac
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.TAuthorRecord, org.jooq.test.oracle.generatedclasses.test.udt.records.UAddressTypeRecord> ADDRESS = createField("ADDRESS", org.jooq.test.oracle.generatedclasses.test.udt.UAddressType.U_ADDRESS_TYPE.getDataType(), this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.T_AUTHOR</code> table reference
|
||||
*/
|
||||
public TAuthor() {
|
||||
super("T_AUTHOR", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.T_AUTHOR</code> table reference
|
||||
*/
|
||||
public TAuthor(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.TAuthor.T_AUTHOR);
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.TBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 813238252;
|
||||
private static final long serialVersionUID = 685660677;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.T_BOOK</code>
|
||||
@ -91,10 +91,16 @@ public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.TBookRecord, byte[]> CONTENT_PDF = createField("CONTENT_PDF", org.jooq.impl.SQLDataType.BLOB, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.T_BOOK</code> table reference
|
||||
*/
|
||||
public TBook() {
|
||||
super("T_BOOK", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.T_BOOK</code> table reference
|
||||
*/
|
||||
public TBook(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK);
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.TBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1822946867;
|
||||
private static final long serialVersionUID = -819225514;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.T_BOOK_STORE</code>
|
||||
@ -31,10 +31,16 @@ public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.o
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.TBookStoreRecord, java.lang.String> NAME = createField("NAME", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.T_BOOK_STORE</code> table reference
|
||||
*/
|
||||
public TBookStore() {
|
||||
super("T_BOOK_STORE", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.T_BOOK_STORE</code> table reference
|
||||
*/
|
||||
public TBookStore(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.TBookStore.T_BOOK_STORE);
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.TBookToBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1608377907;
|
||||
private static final long serialVersionUID = -1816906106;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.T_BOOK_TO_BOOK_STORE</code>
|
||||
@ -57,10 +57,16 @@ public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.TBookToBookStoreRecord, java.lang.Integer> STOCK = createField("STOCK", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.T_BOOK_TO_BOOK_STORE</code> table reference
|
||||
*/
|
||||
public TBookToBookStore() {
|
||||
super("T_BOOK_TO_BOOK_STORE", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.T_BOOK_TO_BOOK_STORE</code> table reference
|
||||
*/
|
||||
public TBookToBookStore(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.TBooleansRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1776550453;
|
||||
private static final long serialVersionUID = -843098930;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.T_BOOLEANS</code>
|
||||
@ -81,10 +81,16 @@ public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.or
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.TBooleansRecord, java.lang.Boolean> N_BOOLEAN = createField("N_BOOLEAN", org.jooq.impl.SQLDataType.BOOLEAN, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.T_BOOLEANS</code> table reference
|
||||
*/
|
||||
public TBooleans() {
|
||||
super("T_BOOLEANS", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.T_BOOLEANS</code> table reference
|
||||
*/
|
||||
public TBooleans(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.TBooleans.T_BOOLEANS);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TDates extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.TDatesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1713842456;
|
||||
private static final long serialVersionUID = 261977673;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.T_DATES</code>
|
||||
@ -66,10 +66,16 @@ public class TDates extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracl
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.TDatesRecord, org.jooq.types.DayToSecond> I_D = createField("I_D", org.jooq.impl.SQLDataType.INTERVALDAYTOSECOND, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.T_DATES</code> table reference
|
||||
*/
|
||||
public TDates() {
|
||||
super("T_DATES", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.T_DATES</code> table reference
|
||||
*/
|
||||
public TDates(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.TDates.T_DATES);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TDirectory extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.TDirectoryRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1251652277;
|
||||
private static final long serialVersionUID = -434517464;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.T_DIRECTORY</code>
|
||||
@ -52,10 +52,16 @@ public class TDirectory extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.o
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.TDirectoryRecord, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.T_DIRECTORY</code> table reference
|
||||
*/
|
||||
public TDirectory() {
|
||||
super("T_DIRECTORY", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.T_DIRECTORY</code> table reference
|
||||
*/
|
||||
public TDirectory(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.TDirectory.T_DIRECTORY);
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TLanguage extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.TLanguageRecord> {
|
||||
|
||||
private static final long serialVersionUID = -416150109;
|
||||
private static final long serialVersionUID = -593334406;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.T_LANGUAGE</code>
|
||||
@ -48,10 +48,16 @@ public class TLanguage extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.or
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.TLanguageRecord, java.lang.Integer> ID = createField("ID", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.T_LANGUAGE</code> table reference
|
||||
*/
|
||||
public TLanguage() {
|
||||
super("T_LANGUAGE", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.T_LANGUAGE</code> table reference
|
||||
*/
|
||||
public TLanguage(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.TLanguage.T_LANGUAGE);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.TTriggersRecord> {
|
||||
|
||||
private static final long serialVersionUID = -815334130;
|
||||
private static final long serialVersionUID = 831288309;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.T_TRIGGERS</code>
|
||||
@ -41,10 +41,16 @@ public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.or
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.TTriggersRecord, java.lang.Integer> COUNTER = createField("COUNTER", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.T_TRIGGERS</code> table reference
|
||||
*/
|
||||
public TTriggers() {
|
||||
super("T_TRIGGERS", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.T_TRIGGERS</code> table reference
|
||||
*/
|
||||
public TTriggers(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.TTriggers.T_TRIGGERS);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.T_639NumbersTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1649119285;
|
||||
private static final long serialVersionUID = -476547448;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.T_639_NUMBERS_TABLE</code>
|
||||
@ -81,10 +81,16 @@ public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.T_639NumbersTableRecord, java.math.BigDecimal> BIG_DECIMAL = createField("BIG_DECIMAL", org.jooq.impl.SQLDataType.NUMERIC, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.T_639_NUMBERS_TABLE</code> table reference
|
||||
*/
|
||||
public T_639NumbersTable() {
|
||||
super("T_639_NUMBERS_TABLE", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.T_639_NUMBERS_TABLE</code> table reference
|
||||
*/
|
||||
public T_639NumbersTable(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.T_639NumbersTable.T_639_NUMBERS_TABLE);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.T_725LobTestRecord> {
|
||||
|
||||
private static final long serialVersionUID = 196142740;
|
||||
private static final long serialVersionUID = 637878987;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.T_725_LOB_TEST</code>
|
||||
@ -36,10 +36,16 @@ public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.T_725LobTestRecord, byte[]> LOB = createField("LOB", org.jooq.impl.SQLDataType.BLOB, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.T_725_LOB_TEST</code> table reference
|
||||
*/
|
||||
public T_725LobTest() {
|
||||
super("T_725_LOB_TEST", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.T_725_LOB_TEST</code> table reference
|
||||
*/
|
||||
public T_725LobTest(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.T_725LobTest.T_725_LOB_TEST);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_785 extends org.jooq.impl.TableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.T_785Record> {
|
||||
|
||||
private static final long serialVersionUID = -1254306995;
|
||||
private static final long serialVersionUID = -1081428712;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.T_785</code>
|
||||
@ -39,10 +39,16 @@ public class T_785 extends org.jooq.impl.TableImpl<org.jooq.test.oracle.generate
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.T_785Record, java.lang.String> VALUE = createField("VALUE", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.T_785</code> table reference
|
||||
*/
|
||||
public T_785() {
|
||||
super("T_785", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.T_785</code> table reference
|
||||
*/
|
||||
public T_785(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.T_785.T_785);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class VAuthor extends org.jooq.impl.TableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.VAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1120289978;
|
||||
private static final long serialVersionUID = -1498954247;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.V_AUTHOR</code>
|
||||
@ -54,10 +54,16 @@ public class VAuthor extends org.jooq.impl.TableImpl<org.jooq.test.oracle.genera
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.VAuthorRecord, org.jooq.test.oracle.generatedclasses.test.udt.records.UAddressTypeRecord> ADDRESS = createField("ADDRESS", org.jooq.test.oracle.generatedclasses.test.udt.UAddressType.U_ADDRESS_TYPE.getDataType(), this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.V_AUTHOR</code> table reference
|
||||
*/
|
||||
public VAuthor() {
|
||||
super("V_AUTHOR", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.V_AUTHOR</code> table reference
|
||||
*/
|
||||
public VAuthor(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.VAuthor.V_AUTHOR);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class VBook extends org.jooq.impl.TableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.VBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1459918940;
|
||||
private static final long serialVersionUID = -1882660893;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.V_BOOK</code>
|
||||
@ -69,10 +69,16 @@ public class VBook extends org.jooq.impl.TableImpl<org.jooq.test.oracle.generate
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.VBookRecord, byte[]> CONTENT_PDF = createField("CONTENT_PDF", org.jooq.impl.SQLDataType.BLOB, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.V_BOOK</code> table reference
|
||||
*/
|
||||
public VBook() {
|
||||
super("V_BOOK", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.V_BOOK</code> table reference
|
||||
*/
|
||||
public VBook(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.VBook.V_BOOK);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class VIncomplete extends org.jooq.impl.TableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.VIncompleteRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1955886599;
|
||||
private static final long serialVersionUID = 1452793158;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.V_INCOMPLETE</code>
|
||||
@ -96,10 +96,16 @@ public class VIncomplete extends org.jooq.impl.TableImpl<org.jooq.test.oracle.ge
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.VIncompleteRecord, java.lang.Object> CONTENT_PDF = createField("CONTENT_PDF", org.jooq.util.oracle.OracleDataType.getDefaultDataType("UNDEFINED"), this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.V_INCOMPLETE</code> table reference
|
||||
*/
|
||||
public VIncomplete() {
|
||||
super("V_INCOMPLETE", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.V_INCOMPLETE</code> table reference
|
||||
*/
|
||||
public VIncomplete(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.VIncomplete.V_INCOMPLETE);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class VLibrary extends org.jooq.impl.TableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.VLibraryRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1155861055;
|
||||
private static final long serialVersionUID = 1290602052;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.V_LIBRARY</code>
|
||||
@ -34,10 +34,16 @@ public class VLibrary extends org.jooq.impl.TableImpl<org.jooq.test.oracle.gener
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.VLibraryRecord, java.lang.String> TITLE = createField("TITLE", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.V_LIBRARY</code> table reference
|
||||
*/
|
||||
public VLibrary() {
|
||||
super("V_LIBRARY", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.V_LIBRARY</code> table reference
|
||||
*/
|
||||
public VLibrary(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.VLibrary.V_LIBRARY);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record> {
|
||||
|
||||
private static final long serialVersionUID = -454501341;
|
||||
private static final long serialVersionUID = -1344654370;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.X_TEST_CASE_64_69</code>
|
||||
@ -42,10 +42,16 @@ public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.t
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_64_69Record, java.lang.Integer> UNUSED_ID = createField("UNUSED_ID", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.X_TEST_CASE_64_69</code> table reference
|
||||
*/
|
||||
public XTestCase_64_69() {
|
||||
super("X_TEST_CASE_64_69", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.X_TEST_CASE_64_69</code> table reference
|
||||
*/
|
||||
public XTestCase_64_69(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_71Record> {
|
||||
|
||||
private static final long serialVersionUID = -2124170763;
|
||||
private static final long serialVersionUID = 843922504;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.X_TEST_CASE_71</code>
|
||||
@ -42,10 +42,16 @@ public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_71Record, java.lang.Short> TEST_CASE_64_69_ID = createField("TEST_CASE_64_69_ID", org.jooq.impl.SQLDataType.SMALLINT, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.X_TEST_CASE_71</code> table reference
|
||||
*/
|
||||
public XTestCase_71() {
|
||||
super("X_TEST_CASE_71", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.X_TEST_CASE_71</code> table reference
|
||||
*/
|
||||
public XTestCase_71(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_71.X_TEST_CASE_71);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_85Record> {
|
||||
|
||||
private static final long serialVersionUID = -1223989939;
|
||||
private static final long serialVersionUID = 69388522;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.X_TEST_CASE_85</code>
|
||||
@ -53,10 +53,16 @@ public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.XTestCase_85Record, java.lang.String> X_UNUSED_NAME = createField("X_UNUSED_NAME", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.X_TEST_CASE_85</code> table reference
|
||||
*/
|
||||
public XTestCase_85() {
|
||||
super("X_TEST_CASE_85", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.X_TEST_CASE_85</code> table reference
|
||||
*/
|
||||
public XTestCase_85(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_85.X_TEST_CASE_85);
|
||||
}
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord> {
|
||||
|
||||
private static final long serialVersionUID = 315159426;
|
||||
private static final long serialVersionUID = -1601660423;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>TEST.X_UNUSED</code>
|
||||
@ -122,10 +122,16 @@ public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.orac
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.oracle.generatedclasses.test.tables.records.XUnusedRecord, java.lang.String> MS_UNUSED_NAME_REF = createField("MS_UNUSED_NAME_REF", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* Create a <code>TEST.X_UNUSED</code> table reference
|
||||
*/
|
||||
public XUnused() {
|
||||
super("X_UNUSED", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>TEST.X_UNUSED</code> table reference
|
||||
*/
|
||||
public XUnused(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.oracle.generatedclasses.test.Test.TEST, org.jooq.test.oracle.generatedclasses.test.tables.XUnused.X_UNUSED);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TArrays extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TArraysRecord> {
|
||||
|
||||
private static final long serialVersionUID = 681799085;
|
||||
private static final long serialVersionUID = -1156135462;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_arrays</code>
|
||||
@ -61,10 +61,16 @@ public class TArrays extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.post
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TArraysRecord, java.lang.Integer[]> ARRAY_ARRAY = createField("array_array", org.jooq.impl.SQLDataType.INTEGER.getArrayDataType(), this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_arrays</code> table reference
|
||||
*/
|
||||
public TArrays() {
|
||||
super("t_arrays", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_arrays</code> table reference
|
||||
*/
|
||||
public TArrays(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.TArrays.T_ARRAYS);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1379648468;
|
||||
private static final long serialVersionUID = -619446221;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_author</code>
|
||||
@ -56,10 +56,16 @@ public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.post
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord> ADDRESS = createField("address", org.jooq.test.postgres.generatedclasses.udt.UAddressType.U_ADDRESS_TYPE.getDataType(), this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_author</code> table reference
|
||||
*/
|
||||
public TAuthor() {
|
||||
super("t_author", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_author</code> table reference
|
||||
*/
|
||||
public TAuthor(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.TAuthor.T_AUTHOR);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1550609782;
|
||||
private static final long serialVersionUID = -1718149345;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_book</code>
|
||||
@ -94,10 +94,16 @@ public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgr
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, org.jooq.test.postgres.generatedclasses.enums.UBookStatus> STATUS = createField("status", org.jooq.util.postgres.PostgresDataType.VARCHAR.asEnumDataType(org.jooq.test.postgres.generatedclasses.enums.UBookStatus.class), this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_book</code> table reference
|
||||
*/
|
||||
public TBook() {
|
||||
super("t_book", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_book</code> table reference
|
||||
*/
|
||||
public TBook(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.TBook.T_BOOK);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1175669421;
|
||||
private static final long serialVersionUID = 1202275860;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_book_store</code>
|
||||
@ -29,10 +29,16 @@ public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.p
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_book_store</code> table reference
|
||||
*/
|
||||
public TBookStore() {
|
||||
super("t_book_store", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_book_store</code> table reference
|
||||
*/
|
||||
public TBookStore(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.TBookStore.T_BOOK_STORE);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = -568952793;
|
||||
private static final long serialVersionUID = 754000636;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_book_to_book_store</code>
|
||||
@ -55,10 +55,16 @@ public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord, java.lang.Integer> STOCK = createField("stock", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_book_to_book_store</code> table reference
|
||||
*/
|
||||
public TBookToBookStore() {
|
||||
super("t_book_to_book_store", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_book_to_book_store</code> table reference
|
||||
*/
|
||||
public TBookToBookStore(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1606914784;
|
||||
private static final long serialVersionUID = -2134479769;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_booleans</code>
|
||||
@ -81,10 +81,16 @@ public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.po
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord, java.lang.Boolean> N_BOOLEAN = createField("n_boolean", org.jooq.impl.SQLDataType.BOOLEAN, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_booleans</code> table reference
|
||||
*/
|
||||
public TBooleans() {
|
||||
super("t_booleans", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_booleans</code> table reference
|
||||
*/
|
||||
public TBooleans(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.TBooleans.T_BOOLEANS);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TDates extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TDatesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 705758710;
|
||||
private static final long serialVersionUID = -2055785233;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_dates</code>
|
||||
@ -56,10 +56,16 @@ public class TDates extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postg
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TDatesRecord, java.lang.Long> TS_BIGINT = createField("ts_bigint", org.jooq.impl.SQLDataType.BIGINT, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_dates</code> table reference
|
||||
*/
|
||||
public TDates() {
|
||||
super("t_dates", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_dates</code> table reference
|
||||
*/
|
||||
public TDates(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.TDates.T_DATES);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TIdentity extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TIdentityRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1982368536;
|
||||
private static final long serialVersionUID = -2140563503;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_identity</code>
|
||||
@ -34,10 +34,16 @@ public class TIdentity extends org.jooq.impl.TableImpl<org.jooq.test.postgres.ge
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TIdentityRecord, java.lang.Integer> VAL = createField("val", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_identity</code> table reference
|
||||
*/
|
||||
public TIdentity() {
|
||||
super("t_identity", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_identity</code> table reference
|
||||
*/
|
||||
public TIdentity(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.TIdentity.T_IDENTITY);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TIdentityPk extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TIdentityPkRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1449815258;
|
||||
private static final long serialVersionUID = 51659911;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_identity_pk</code>
|
||||
@ -36,10 +36,16 @@ public class TIdentityPk extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TIdentityPkRecord, java.lang.Integer> VAL = createField("val", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_identity_pk</code> table reference
|
||||
*/
|
||||
public TIdentityPk() {
|
||||
super("t_identity_pk", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_identity_pk</code> table reference
|
||||
*/
|
||||
public TIdentityPk(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.TIdentityPk.T_IDENTITY_PK);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TLanguage extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1612625924;
|
||||
private static final long serialVersionUID = -1650998237;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_language</code>
|
||||
@ -46,10 +46,16 @@ public class TLanguage extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.po
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.Integer> ID = createField("id", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_language</code> table reference
|
||||
*/
|
||||
public TLanguage() {
|
||||
super("t_language", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_language</code> table reference
|
||||
*/
|
||||
public TLanguage(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.TLanguage.T_LANGUAGE);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TTriggersRecord> {
|
||||
|
||||
private static final long serialVersionUID = 948742898;
|
||||
private static final long serialVersionUID = 973675057;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_triggers</code>
|
||||
@ -41,10 +41,16 @@ public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.po
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TTriggersRecord, java.lang.Integer> COUNTER = createField("counter", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_triggers</code> table reference
|
||||
*/
|
||||
public TTriggers() {
|
||||
super("t_triggers", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_triggers</code> table reference
|
||||
*/
|
||||
public TTriggers(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.TTriggers.T_TRIGGERS);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_639NumbersTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1009357128;
|
||||
private static final long serialVersionUID = 419461461;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_639_numbers_table</code>
|
||||
@ -86,10 +86,16 @@ public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_639NumbersTableRecord, java.lang.Double> DOUBLE = createField("double", org.jooq.impl.SQLDataType.DOUBLE, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_639_numbers_table</code> table reference
|
||||
*/
|
||||
public T_639NumbersTable() {
|
||||
super("t_639_numbers_table", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_639_numbers_table</code> table reference
|
||||
*/
|
||||
public T_639NumbersTable(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.T_639NumbersTable.T_639_NUMBERS_TABLE);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_725LobTestRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1839502743;
|
||||
private static final long serialVersionUID = 662325606;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_725_lob_test</code>
|
||||
@ -36,10 +36,16 @@ public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_725LobTestRecord, byte[]> LOB = createField("lob", org.jooq.impl.SQLDataType.BLOB, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_725_lob_test</code> table reference
|
||||
*/
|
||||
public T_725LobTest() {
|
||||
super("t_725_lob_test", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_725_lob_test</code> table reference
|
||||
*/
|
||||
public T_725LobTest(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.T_725LobTest.T_725_LOB_TEST);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_785 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_785Record> {
|
||||
|
||||
private static final long serialVersionUID = 1814045679;
|
||||
private static final long serialVersionUID = -1845498362;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_785</code>
|
||||
@ -39,10 +39,16 @@ public class T_785 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.genera
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_785Record, java.lang.String> VALUE = createField("value", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_785</code> table reference
|
||||
*/
|
||||
public T_785() {
|
||||
super("t_785", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_785</code> table reference
|
||||
*/
|
||||
public T_785(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.T_785.T_785);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_959 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_959Record> {
|
||||
|
||||
private static final long serialVersionUID = 725725149;
|
||||
private static final long serialVersionUID = 328318598;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_959</code>
|
||||
@ -29,10 +29,16 @@ public class T_959 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.genera
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_959Record, org.jooq.test.postgres.generatedclasses.enums.U_959> JAVA_KEYWORDS = createField("java_keywords", org.jooq.util.postgres.PostgresDataType.VARCHAR.asEnumDataType(org.jooq.test.postgres.generatedclasses.enums.U_959.class), this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_959</code> table reference
|
||||
*/
|
||||
public T_959() {
|
||||
super("t_959", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_959</code> table reference
|
||||
*/
|
||||
public T_959(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.T_959.T_959);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_986_1 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_986_1Record> {
|
||||
|
||||
private static final long serialVersionUID = 1955107527;
|
||||
private static final long serialVersionUID = 1132056678;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_986_1</code>
|
||||
@ -35,10 +35,16 @@ public class T_986_1 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.gene
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_986_1Record, java.lang.Integer> REF = createField("ref", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_986_1</code> table reference
|
||||
*/
|
||||
public T_986_1() {
|
||||
super("t_986_1", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_986_1</code> table reference
|
||||
*/
|
||||
public T_986_1(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.T_986_1.T_986_1);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class T_986_2 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_986_2Record> {
|
||||
|
||||
private static final long serialVersionUID = -964333944;
|
||||
private static final long serialVersionUID = -359802719;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_986_2</code>
|
||||
@ -35,10 +35,16 @@ public class T_986_2 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.gene
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.T_986_2Record, java.lang.Integer> REF = createField("ref", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_986_2</code> table reference
|
||||
*/
|
||||
public T_986_2() {
|
||||
super("t_986_2", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.t_986_2</code> table reference
|
||||
*/
|
||||
public T_986_2(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.T_986_2.T_986_2);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class VAuthor extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.VAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1984791626;
|
||||
private static final long serialVersionUID = -733810183;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.v_author</code>
|
||||
@ -54,10 +54,16 @@ public class VAuthor extends org.jooq.impl.TableImpl<org.jooq.test.postgres.gene
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.VAuthorRecord, org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord> ADDRESS = createField("address", org.jooq.test.postgres.generatedclasses.udt.UAddressType.U_ADDRESS_TYPE.getDataType(), this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.v_author</code> table reference
|
||||
*/
|
||||
public VAuthor() {
|
||||
super("v_author", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.v_author</code> table reference
|
||||
*/
|
||||
public VAuthor(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.VAuthor.V_AUTHOR);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class VBook extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.VBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 260141594;
|
||||
private static final long serialVersionUID = -887659047;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.v_book</code>
|
||||
@ -74,10 +74,16 @@ public class VBook extends org.jooq.impl.TableImpl<org.jooq.test.postgres.genera
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.VBookRecord, org.jooq.test.postgres.generatedclasses.enums.UBookStatus> STATUS = createField("status", org.jooq.util.postgres.PostgresDataType.VARCHAR.asEnumDataType(org.jooq.test.postgres.generatedclasses.enums.UBookStatus.class), this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.v_book</code> table reference
|
||||
*/
|
||||
public VBook() {
|
||||
super("v_book", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.v_book</code> table reference
|
||||
*/
|
||||
public VBook(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.VBook.V_BOOK);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class VLibrary extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.VLibraryRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1850064076;
|
||||
private static final long serialVersionUID = 1593506947;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.v_library</code>
|
||||
@ -34,10 +34,16 @@ public class VLibrary extends org.jooq.impl.TableImpl<org.jooq.test.postgres.gen
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.VLibraryRecord, java.lang.String> TITLE = createField("title", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.v_library</code> table reference
|
||||
*/
|
||||
public VLibrary() {
|
||||
super("v_library", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.v_library</code> table reference
|
||||
*/
|
||||
public VLibrary(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.VLibrary.V_LIBRARY);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_64_69Record> {
|
||||
|
||||
private static final long serialVersionUID = 368448890;
|
||||
private static final long serialVersionUID = -799273069;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.x_test_case_64_69</code>
|
||||
@ -42,10 +42,16 @@ public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.t
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_64_69Record, java.lang.Integer> UNUSED_ID = createField("unused_id", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.x_test_case_64_69</code> table reference
|
||||
*/
|
||||
public XTestCase_64_69() {
|
||||
super("x_test_case_64_69", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.x_test_case_64_69</code> table reference
|
||||
*/
|
||||
public XTestCase_64_69(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_71Record> {
|
||||
|
||||
private static final long serialVersionUID = 742195132;
|
||||
private static final long serialVersionUID = 1489863011;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.x_test_case_71</code>
|
||||
@ -42,10 +42,16 @@ public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_71Record, java.lang.Short> TEST_CASE_64_69_ID = createField("test_case_64_69_id", org.jooq.impl.SQLDataType.SMALLINT, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.x_test_case_71</code> table reference
|
||||
*/
|
||||
public XTestCase_71() {
|
||||
super("x_test_case_71", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.x_test_case_71</code> table reference
|
||||
*/
|
||||
public XTestCase_71(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_85Record> {
|
||||
|
||||
private static final long serialVersionUID = 1357903005;
|
||||
private static final long serialVersionUID = -1472453388;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.x_test_case_85</code>
|
||||
@ -53,10 +53,16 @@ public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_85Record, java.lang.String> X_UNUSED_NAME = createField("x_unused_name", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.x_test_case_85</code> table reference
|
||||
*/
|
||||
public XTestCase_85() {
|
||||
super("x_test_case_85", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.x_test_case_85</code> table reference
|
||||
*/
|
||||
public XTestCase_85(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85);
|
||||
}
|
||||
|
||||
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord> {
|
||||
|
||||
private static final long serialVersionUID = 2065268079;
|
||||
private static final long serialVersionUID = 995410112;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.x_unused</code>
|
||||
@ -115,10 +115,16 @@ public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.post
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord, java.math.BigDecimal> FIELD_737 = createField("FIELD 737", org.jooq.impl.SQLDataType.NUMERIC, this);
|
||||
|
||||
/**
|
||||
* Create a <code>public.x_unused</code> table reference
|
||||
*/
|
||||
public XUnused() {
|
||||
super("x_unused", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.x_unused</code> table reference
|
||||
*/
|
||||
public XUnused(java.lang.String alias) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.test.postgres.generatedclasses.tables.XUnused.X_UNUSED);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user