diff --git a/jOOQ-codegen/src/main/java/org/jooq/util/DefaultGenerator.java b/jOOQ-codegen/src/main/java/org/jooq/util/DefaultGenerator.java
index 9304df3367..985bacb86d 100644
--- a/jOOQ-codegen/src/main/java/org/jooq/util/DefaultGenerator.java
+++ b/jOOQ-codegen/src/main/java/org/jooq/util/DefaultGenerator.java
@@ -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 %s 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 %s 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("}");
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/TAuthor.java
index 5dac563250..7aef93cd98 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/TAuthor.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/TAuthor.java
@@ -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 {
- private static final long serialVersionUID = -1800135844;
+ private static final long serialVersionUID = 309943149;
/**
* The singleton instance of MULTI_SCHEMA.T_AUTHOR
@@ -59,10 +59,16 @@ public class TAuthor extends org.jooq.impl.UpdatableTableImpl ADDRESS = createField("ADDRESS", org.jooq.util.oracle.OracleDataType.getDefaultDataType("U_ADDRESS_TYPE"), this);
+ /**
+ * Create a MULTI_SCHEMA.T_AUTHOR table reference
+ */
public TAuthor() {
super("T_AUTHOR", org.jooq.test.oracle.generatedclasses.multi_schema.MultiSchema.MULTI_SCHEMA);
}
+ /**
+ * Create an aliased MULTI_SCHEMA.T_AUTHOR 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/TBook.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/TBook.java
index 735e68c20b..df72ff243f 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/TBook.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/TBook.java
@@ -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 {
- private static final long serialVersionUID = 2121808699;
+ private static final long serialVersionUID = 1246139238;
/**
* The singleton instance of MULTI_SCHEMA.T_BOOK
@@ -89,10 +89,16 @@ public class TBook extends org.jooq.impl.UpdatableTableImpl CONTENT_PDF = createField("CONTENT_PDF", org.jooq.impl.SQLDataType.BLOB, this);
+ /**
+ * Create a MULTI_SCHEMA.T_BOOK table reference
+ */
public TBook() {
super("T_BOOK", org.jooq.test.oracle.generatedclasses.multi_schema.MultiSchema.MULTI_SCHEMA);
}
+ /**
+ * Create an aliased MULTI_SCHEMA.T_BOOK 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/TBookSale.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/TBookSale.java
index 9558056267..fba2ecb08f 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/TBookSale.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/TBookSale.java
@@ -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 {
- private static final long serialVersionUID = 848140511;
+ private static final long serialVersionUID = -1320461060;
/**
* The singleton instance of MULTI_SCHEMA.T_BOOK_SALE
@@ -63,10 +63,16 @@ public class TBookSale extends org.jooq.impl.UpdatableTableImpl SOLD_FOR = createField("SOLD_FOR", org.jooq.impl.SQLDataType.NUMERIC, this);
+ /**
+ * Create a MULTI_SCHEMA.T_BOOK_SALE table reference
+ */
public TBookSale() {
super("T_BOOK_SALE", org.jooq.test.oracle.generatedclasses.multi_schema.MultiSchema.MULTI_SCHEMA);
}
+ /**
+ * Create an aliased MULTI_SCHEMA.T_BOOK_SALE 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/MLibrary.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/MLibrary.java
index 9f543b168b..d33568e8b3 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/MLibrary.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/MLibrary.java
@@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class MLibrary extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 785976198;
+ private static final long serialVersionUID = 1002758703;
/**
* The singleton instance of TEST.M_LIBRARY
@@ -36,10 +36,16 @@ public class MLibrary extends org.jooq.impl.TableImpl TITLE = createField("TITLE", org.jooq.impl.SQLDataType.VARCHAR, this);
+ /**
+ * Create a TEST.M_LIBRARY table reference
+ */
public MLibrary() {
super("M_LIBRARY", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.M_LIBRARY 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TArrays.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TArrays.java
index 706879e63d..e25ed9e1fe 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TArrays.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TArrays.java
@@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class TArrays extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -577633693;
+ private static final long serialVersionUID = 613166462;
/**
* The singleton instance of TEST.T_ARRAYS
@@ -51,10 +51,16 @@ public class TArrays extends org.jooq.impl.UpdatableTableImpl DATE_ARRAY = createField("DATE_ARRAY", org.jooq.impl.SQLDataType.DATE.asArrayDataType(org.jooq.test.oracle.generatedclasses.test.udt.records.UDateArrayRecord.class), this);
+ /**
+ * Create a TEST.T_ARRAYS table reference
+ */
public TArrays() {
super("T_ARRAYS", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.T_ARRAYS 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TAuthor.java
index ed58f72af7..30bb4a99b6 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TAuthor.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TAuthor.java
@@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class TAuthor extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1481963947;
+ private static final long serialVersionUID = 1371657944;
/**
* The singleton instance of TEST.T_AUTHOR
@@ -58,10 +58,16 @@ public class TAuthor extends org.jooq.impl.UpdatableTableImpl ADDRESS = createField("ADDRESS", org.jooq.test.oracle.generatedclasses.test.udt.UAddressType.U_ADDRESS_TYPE.getDataType(), this);
+ /**
+ * Create a TEST.T_AUTHOR table reference
+ */
public TAuthor() {
super("T_AUTHOR", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.T_AUTHOR 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBook.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBook.java
index dc03ae2e9f..91d6a24968 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBook.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBook.java
@@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class TBook extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 813238252;
+ private static final long serialVersionUID = 685660677;
/**
* The singleton instance of TEST.T_BOOK
@@ -91,10 +91,16 @@ public class TBook extends org.jooq.impl.UpdatableTableImpl CONTENT_PDF = createField("CONTENT_PDF", org.jooq.impl.SQLDataType.BLOB, this);
+ /**
+ * Create a TEST.T_BOOK table reference
+ */
public TBook() {
super("T_BOOK", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.T_BOOK 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBookStore.java
index 0403bcbb1c..035a4b2547 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBookStore.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBookStore.java
@@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class TBookStore extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -1822946867;
+ private static final long serialVersionUID = -819225514;
/**
* The singleton instance of TEST.T_BOOK_STORE
@@ -31,10 +31,16 @@ public class TBookStore extends org.jooq.impl.UpdatableTableImpl NAME = createField("NAME", org.jooq.impl.SQLDataType.VARCHAR, this);
+ /**
+ * Create a TEST.T_BOOK_STORE table reference
+ */
public TBookStore() {
super("T_BOOK_STORE", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.T_BOOK_STORE 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBookToBookStore.java
index 254f3f2663..3c3a96479d 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBookToBookStore.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBookToBookStore.java
@@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1608377907;
+ private static final long serialVersionUID = -1816906106;
/**
* The singleton instance of TEST.T_BOOK_TO_BOOK_STORE
@@ -57,10 +57,16 @@ public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl STOCK = createField("STOCK", org.jooq.impl.SQLDataType.INTEGER, this);
+ /**
+ * Create a TEST.T_BOOK_TO_BOOK_STORE table reference
+ */
public TBookToBookStore() {
super("T_BOOK_TO_BOOK_STORE", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.T_BOOK_TO_BOOK_STORE 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBooleans.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBooleans.java
index 8d3e6a4ad7..10ee012171 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBooleans.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TBooleans.java
@@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class TBooleans extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1776550453;
+ private static final long serialVersionUID = -843098930;
/**
* The singleton instance of TEST.T_BOOLEANS
@@ -81,10 +81,16 @@ public class TBooleans extends org.jooq.impl.UpdatableTableImpl N_BOOLEAN = createField("N_BOOLEAN", org.jooq.impl.SQLDataType.BOOLEAN, this);
+ /**
+ * Create a TEST.T_BOOLEANS table reference
+ */
public TBooleans() {
super("T_BOOLEANS", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.T_BOOLEANS 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TDates.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TDates.java
index aefae49b51..97540c94e1 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TDates.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TDates.java
@@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class TDates extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -1713842456;
+ private static final long serialVersionUID = 261977673;
/**
* The singleton instance of TEST.T_DATES
@@ -66,10 +66,16 @@ public class TDates extends org.jooq.impl.UpdatableTableImpl I_D = createField("I_D", org.jooq.impl.SQLDataType.INTERVALDAYTOSECOND, this);
+ /**
+ * Create a TEST.T_DATES table reference
+ */
public TDates() {
super("T_DATES", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.T_DATES 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TDirectory.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TDirectory.java
index 95f67d6338..4d0367818a 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TDirectory.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TDirectory.java
@@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class TDirectory extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -1251652277;
+ private static final long serialVersionUID = -434517464;
/**
* The singleton instance of TEST.T_DIRECTORY
@@ -52,10 +52,16 @@ public class TDirectory extends org.jooq.impl.UpdatableTableImpl NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR, this);
+ /**
+ * Create a TEST.T_DIRECTORY table reference
+ */
public TDirectory() {
super("T_DIRECTORY", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.T_DIRECTORY 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TLanguage.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TLanguage.java
index 02152a1521..26722a10e0 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TLanguage.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TLanguage.java
@@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class TLanguage extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -416150109;
+ private static final long serialVersionUID = -593334406;
/**
* The singleton instance of TEST.T_LANGUAGE
@@ -48,10 +48,16 @@ public class TLanguage extends org.jooq.impl.UpdatableTableImpl ID = createField("ID", org.jooq.impl.SQLDataType.INTEGER, this);
+ /**
+ * Create a TEST.T_LANGUAGE table reference
+ */
public TLanguage() {
super("T_LANGUAGE", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.T_LANGUAGE 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TTriggers.java
index 46a21b4941..4e06c3cd2d 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TTriggers.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/TTriggers.java
@@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class TTriggers extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -815334130;
+ private static final long serialVersionUID = 831288309;
/**
* The singleton instance of TEST.T_TRIGGERS
@@ -41,10 +41,16 @@ public class TTriggers extends org.jooq.impl.UpdatableTableImpl COUNTER = createField("COUNTER", org.jooq.impl.SQLDataType.INTEGER, this);
+ /**
+ * Create a TEST.T_TRIGGERS table reference
+ */
public TTriggers() {
super("T_TRIGGERS", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.T_TRIGGERS 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/T_639NumbersTable.java
index e193c0bccd..3613d9628a 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/T_639NumbersTable.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/T_639NumbersTable.java
@@ -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 {
- private static final long serialVersionUID = 1649119285;
+ private static final long serialVersionUID = -476547448;
/**
* The singleton instance of TEST.T_639_NUMBERS_TABLE
@@ -81,10 +81,16 @@ public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl BIG_DECIMAL = createField("BIG_DECIMAL", org.jooq.impl.SQLDataType.NUMERIC, this);
+ /**
+ * Create a TEST.T_639_NUMBERS_TABLE table reference
+ */
public T_639NumbersTable() {
super("T_639_NUMBERS_TABLE", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.T_639_NUMBERS_TABLE 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/T_725LobTest.java
index 872c3a8112..68a639006a 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/T_725LobTest.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/T_725LobTest.java
@@ -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 {
- private static final long serialVersionUID = 196142740;
+ private static final long serialVersionUID = 637878987;
/**
* The singleton instance of TEST.T_725_LOB_TEST
@@ -36,10 +36,16 @@ public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl LOB = createField("LOB", org.jooq.impl.SQLDataType.BLOB, this);
+ /**
+ * Create a TEST.T_725_LOB_TEST table reference
+ */
public T_725LobTest() {
super("T_725_LOB_TEST", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.T_725_LOB_TEST 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/T_785.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/T_785.java
index 26d15e16c6..94c8cef087 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/T_785.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/T_785.java
@@ -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 {
- private static final long serialVersionUID = -1254306995;
+ private static final long serialVersionUID = -1081428712;
/**
* The singleton instance of TEST.T_785
@@ -39,10 +39,16 @@ public class T_785 extends org.jooq.impl.TableImpl VALUE = createField("VALUE", org.jooq.impl.SQLDataType.VARCHAR, this);
+ /**
+ * Create a TEST.T_785 table reference
+ */
public T_785() {
super("T_785", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.T_785 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VAuthor.java
index a5a64bcae6..1109dd40ae 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VAuthor.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VAuthor.java
@@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class VAuthor extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -1120289978;
+ private static final long serialVersionUID = -1498954247;
/**
* The singleton instance of TEST.V_AUTHOR
@@ -54,10 +54,16 @@ public class VAuthor extends org.jooq.impl.TableImpl ADDRESS = createField("ADDRESS", org.jooq.test.oracle.generatedclasses.test.udt.UAddressType.U_ADDRESS_TYPE.getDataType(), this);
+ /**
+ * Create a TEST.V_AUTHOR table reference
+ */
public VAuthor() {
super("V_AUTHOR", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.V_AUTHOR 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VBook.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VBook.java
index 0bec0fb3f5..96d0f28a86 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VBook.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VBook.java
@@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class VBook extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 1459918940;
+ private static final long serialVersionUID = -1882660893;
/**
* The singleton instance of TEST.V_BOOK
@@ -69,10 +69,16 @@ public class VBook extends org.jooq.impl.TableImpl CONTENT_PDF = createField("CONTENT_PDF", org.jooq.impl.SQLDataType.BLOB, this);
+ /**
+ * Create a TEST.V_BOOK table reference
+ */
public VBook() {
super("V_BOOK", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.V_BOOK 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VIncomplete.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VIncomplete.java
index 09c848b3ea..3ebf165b77 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VIncomplete.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VIncomplete.java
@@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class VIncomplete extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -1955886599;
+ private static final long serialVersionUID = 1452793158;
/**
* The singleton instance of TEST.V_INCOMPLETE
@@ -96,10 +96,16 @@ public class VIncomplete extends org.jooq.impl.TableImpl CONTENT_PDF = createField("CONTENT_PDF", org.jooq.util.oracle.OracleDataType.getDefaultDataType("UNDEFINED"), this);
+ /**
+ * Create a TEST.V_INCOMPLETE table reference
+ */
public VIncomplete() {
super("V_INCOMPLETE", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.V_INCOMPLETE 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VLibrary.java
index 7b6ddf81d4..926947067c 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VLibrary.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/VLibrary.java
@@ -9,7 +9,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class VLibrary extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 1155861055;
+ private static final long serialVersionUID = 1290602052;
/**
* The singleton instance of TEST.V_LIBRARY
@@ -34,10 +34,16 @@ public class VLibrary extends org.jooq.impl.TableImpl TITLE = createField("TITLE", org.jooq.impl.SQLDataType.VARCHAR, this);
+ /**
+ * Create a TEST.V_LIBRARY table reference
+ */
public VLibrary() {
super("V_LIBRARY", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.V_LIBRARY 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XTestCase_64_69.java
index 1aeb4f2760..147e69fb3f 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XTestCase_64_69.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XTestCase_64_69.java
@@ -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 {
- private static final long serialVersionUID = -454501341;
+ private static final long serialVersionUID = -1344654370;
/**
* The singleton instance of TEST.X_TEST_CASE_64_69
@@ -42,10 +42,16 @@ public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl UNUSED_ID = createField("UNUSED_ID", org.jooq.impl.SQLDataType.INTEGER, this);
+ /**
+ * Create a TEST.X_TEST_CASE_64_69 table reference
+ */
public XTestCase_64_69() {
super("X_TEST_CASE_64_69", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.X_TEST_CASE_64_69 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XTestCase_71.java
index fc73fa1c58..0792f425d7 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XTestCase_71.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XTestCase_71.java
@@ -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 {
- private static final long serialVersionUID = -2124170763;
+ private static final long serialVersionUID = 843922504;
/**
* The singleton instance of TEST.X_TEST_CASE_71
@@ -42,10 +42,16 @@ public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl TEST_CASE_64_69_ID = createField("TEST_CASE_64_69_ID", org.jooq.impl.SQLDataType.SMALLINT, this);
+ /**
+ * Create a TEST.X_TEST_CASE_71 table reference
+ */
public XTestCase_71() {
super("X_TEST_CASE_71", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.X_TEST_CASE_71 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XTestCase_85.java
index a197b561d5..ee1bfa82ee 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XTestCase_85.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XTestCase_85.java
@@ -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 {
- private static final long serialVersionUID = -1223989939;
+ private static final long serialVersionUID = 69388522;
/**
* The singleton instance of TEST.X_TEST_CASE_85
@@ -53,10 +53,16 @@ public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl X_UNUSED_NAME = createField("X_UNUSED_NAME", org.jooq.impl.SQLDataType.VARCHAR, this);
+ /**
+ * Create a TEST.X_TEST_CASE_85 table reference
+ */
public XTestCase_85() {
super("X_TEST_CASE_85", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.X_TEST_CASE_85 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XUnused.java
index ae94b6b7a5..4f88647c8f 100644
--- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XUnused.java
+++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/XUnused.java
@@ -11,7 +11,7 @@ package org.jooq.test.oracle.generatedclasses.test.tables;
@java.lang.SuppressWarnings("all")
public class XUnused extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 315159426;
+ private static final long serialVersionUID = -1601660423;
/**
* The singleton instance of TEST.X_UNUSED
@@ -122,10 +122,16 @@ public class XUnused extends org.jooq.impl.UpdatableTableImpl MS_UNUSED_NAME_REF = createField("MS_UNUSED_NAME_REF", org.jooq.impl.SQLDataType.VARCHAR, this);
+ /**
+ * Create a TEST.X_UNUSED table reference
+ */
public XUnused() {
super("X_UNUSED", org.jooq.test.oracle.generatedclasses.test.Test.TEST);
}
+ /**
+ * Create an aliased TEST.X_UNUSED 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TArrays.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TArrays.java
index 25cff3fcd7..664c07fb78 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TArrays.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TArrays.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class TArrays extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 681799085;
+ private static final long serialVersionUID = -1156135462;
/**
* The singleton instance of public.t_arrays
@@ -61,10 +61,16 @@ public class TArrays extends org.jooq.impl.UpdatableTableImpl ARRAY_ARRAY = createField("array_array", org.jooq.impl.SQLDataType.INTEGER.getArrayDataType(), this);
+ /**
+ * Create a public.t_arrays table reference
+ */
public TArrays() {
super("t_arrays", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_arrays 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TAuthor.java
index 5c38285be6..aad838963e 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TAuthor.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TAuthor.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class TAuthor extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1379648468;
+ private static final long serialVersionUID = -619446221;
/**
* The singleton instance of public.t_author
@@ -56,10 +56,16 @@ public class TAuthor extends org.jooq.impl.UpdatableTableImpl ADDRESS = createField("address", org.jooq.test.postgres.generatedclasses.udt.UAddressType.U_ADDRESS_TYPE.getDataType(), this);
+ /**
+ * Create a public.t_author table reference
+ */
public TAuthor() {
super("t_author", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_author 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBook.java
index 8a4f3a7d4a..47e8d61bf6 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBook.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBook.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class TBook extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1550609782;
+ private static final long serialVersionUID = -1718149345;
/**
* The singleton instance of public.t_book
@@ -94,10 +94,16 @@ public class TBook extends org.jooq.impl.UpdatableTableImpl STATUS = createField("status", org.jooq.util.postgres.PostgresDataType.VARCHAR.asEnumDataType(org.jooq.test.postgres.generatedclasses.enums.UBookStatus.class), this);
+ /**
+ * Create a public.t_book table reference
+ */
public TBook() {
super("t_book", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_book 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookStore.java
index e5193bac14..2e89cf008a 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookStore.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookStore.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class TBookStore extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1175669421;
+ private static final long serialVersionUID = 1202275860;
/**
* The singleton instance of public.t_book_store
@@ -29,10 +29,16 @@ public class TBookStore extends org.jooq.impl.UpdatableTableImpl NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR, this);
+ /**
+ * Create a public.t_book_store table reference
+ */
public TBookStore() {
super("t_book_store", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_book_store 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookToBookStore.java
index b7c9714c4d..0fe2f4ad4f 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookToBookStore.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBookToBookStore.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -568952793;
+ private static final long serialVersionUID = 754000636;
/**
* The singleton instance of public.t_book_to_book_store
@@ -55,10 +55,16 @@ public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl STOCK = createField("stock", org.jooq.impl.SQLDataType.INTEGER, this);
+ /**
+ * Create a public.t_book_to_book_store table reference
+ */
public TBookToBookStore() {
super("t_book_to_book_store", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_book_to_book_store 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBooleans.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBooleans.java
index f2f875add5..039eb6df09 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBooleans.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TBooleans.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class TBooleans extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1606914784;
+ private static final long serialVersionUID = -2134479769;
/**
* The singleton instance of public.t_booleans
@@ -81,10 +81,16 @@ public class TBooleans extends org.jooq.impl.UpdatableTableImpl N_BOOLEAN = createField("n_boolean", org.jooq.impl.SQLDataType.BOOLEAN, this);
+ /**
+ * Create a public.t_booleans table reference
+ */
public TBooleans() {
super("t_booleans", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_booleans 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TDates.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TDates.java
index fba64c6a58..41d20edc5e 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TDates.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TDates.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class TDates extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 705758710;
+ private static final long serialVersionUID = -2055785233;
/**
* The singleton instance of public.t_dates
@@ -56,10 +56,16 @@ public class TDates extends org.jooq.impl.UpdatableTableImpl TS_BIGINT = createField("ts_bigint", org.jooq.impl.SQLDataType.BIGINT, this);
+ /**
+ * Create a public.t_dates table reference
+ */
public TDates() {
super("t_dates", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_dates 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TIdentity.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TIdentity.java
index 4d26c715d5..a2ed897447 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TIdentity.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TIdentity.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class TIdentity extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -1982368536;
+ private static final long serialVersionUID = -2140563503;
/**
* The singleton instance of public.t_identity
@@ -34,10 +34,16 @@ public class TIdentity extends org.jooq.impl.TableImpl VAL = createField("val", org.jooq.impl.SQLDataType.INTEGER, this);
+ /**
+ * Create a public.t_identity table reference
+ */
public TIdentity() {
super("t_identity", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_identity 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TIdentityPk.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TIdentityPk.java
index d51d544f36..43ff996a88 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TIdentityPk.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TIdentityPk.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class TIdentityPk extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -1449815258;
+ private static final long serialVersionUID = 51659911;
/**
* The singleton instance of public.t_identity_pk
@@ -36,10 +36,16 @@ public class TIdentityPk extends org.jooq.impl.UpdatableTableImpl VAL = createField("val", org.jooq.impl.SQLDataType.INTEGER, this);
+ /**
+ * Create a public.t_identity_pk table reference
+ */
public TIdentityPk() {
super("t_identity_pk", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_identity_pk 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TLanguage.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TLanguage.java
index d47167e870..2bc13be9b1 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TLanguage.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TLanguage.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class TLanguage extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1612625924;
+ private static final long serialVersionUID = -1650998237;
/**
* The singleton instance of public.t_language
@@ -46,10 +46,16 @@ public class TLanguage extends org.jooq.impl.UpdatableTableImpl ID = createField("id", org.jooq.impl.SQLDataType.INTEGER, this);
+ /**
+ * Create a public.t_language table reference
+ */
public TLanguage() {
super("t_language", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_language 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TTriggers.java
index ac8e8d137f..360caaa543 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TTriggers.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/TTriggers.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class TTriggers extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 948742898;
+ private static final long serialVersionUID = 973675057;
/**
* The singleton instance of public.t_triggers
@@ -41,10 +41,16 @@ public class TTriggers extends org.jooq.impl.UpdatableTableImpl COUNTER = createField("counter", org.jooq.impl.SQLDataType.INTEGER, this);
+ /**
+ * Create a public.t_triggers table reference
+ */
public TTriggers() {
super("t_triggers", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_triggers 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_639NumbersTable.java
index 1d81e706e5..6196eec1b5 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_639NumbersTable.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_639NumbersTable.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -1009357128;
+ private static final long serialVersionUID = 419461461;
/**
* The singleton instance of public.t_639_numbers_table
@@ -86,10 +86,16 @@ public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl DOUBLE = createField("double", org.jooq.impl.SQLDataType.DOUBLE, this);
+ /**
+ * Create a public.t_639_numbers_table table reference
+ */
public T_639NumbersTable() {
super("t_639_numbers_table", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_639_numbers_table 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_725LobTest.java
index 7ddb05dd4f..4108dcda65 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_725LobTest.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_725LobTest.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1839502743;
+ private static final long serialVersionUID = 662325606;
/**
* The singleton instance of public.t_725_lob_test
@@ -36,10 +36,16 @@ public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl LOB = createField("lob", org.jooq.impl.SQLDataType.BLOB, this);
+ /**
+ * Create a public.t_725_lob_test table reference
+ */
public T_725LobTest() {
super("t_725_lob_test", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_725_lob_test 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_785.java
index 82fbe00444..d4d3548a08 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_785.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_785.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class T_785 extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 1814045679;
+ private static final long serialVersionUID = -1845498362;
/**
* The singleton instance of public.t_785
@@ -39,10 +39,16 @@ public class T_785 extends org.jooq.impl.TableImpl VALUE = createField("value", org.jooq.impl.SQLDataType.VARCHAR, this);
+ /**
+ * Create a public.t_785 table reference
+ */
public T_785() {
super("t_785", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_785 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_959.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_959.java
index d5a95308b5..8dcce30f59 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_959.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_959.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class T_959 extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 725725149;
+ private static final long serialVersionUID = 328318598;
/**
* The singleton instance of public.t_959
@@ -29,10 +29,16 @@ public class T_959 extends org.jooq.impl.TableImpl JAVA_KEYWORDS = createField("java_keywords", org.jooq.util.postgres.PostgresDataType.VARCHAR.asEnumDataType(org.jooq.test.postgres.generatedclasses.enums.U_959.class), this);
+ /**
+ * Create a public.t_959 table reference
+ */
public T_959() {
super("t_959", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_959 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_986_1.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_986_1.java
index 2a35ef2be9..9b24e5a5ed 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_986_1.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_986_1.java
@@ -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 {
- private static final long serialVersionUID = 1955107527;
+ private static final long serialVersionUID = 1132056678;
/**
* The singleton instance of public.t_986_1
@@ -35,10 +35,16 @@ public class T_986_1 extends org.jooq.impl.TableImpl REF = createField("ref", org.jooq.impl.SQLDataType.INTEGER, this);
+ /**
+ * Create a public.t_986_1 table reference
+ */
public T_986_1() {
super("t_986_1", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_986_1 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_986_2.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_986_2.java
index 88ee20631c..70ff12a8f0 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_986_2.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/T_986_2.java
@@ -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 {
- private static final long serialVersionUID = -964333944;
+ private static final long serialVersionUID = -359802719;
/**
* The singleton instance of public.t_986_2
@@ -35,10 +35,16 @@ public class T_986_2 extends org.jooq.impl.TableImpl REF = createField("ref", org.jooq.impl.SQLDataType.INTEGER, this);
+ /**
+ * Create a public.t_986_2 table reference
+ */
public T_986_2() {
super("t_986_2", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.t_986_2 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VAuthor.java
index 87ec4209ab..8897832d96 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VAuthor.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VAuthor.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class VAuthor extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -1984791626;
+ private static final long serialVersionUID = -733810183;
/**
* The singleton instance of public.v_author
@@ -54,10 +54,16 @@ public class VAuthor extends org.jooq.impl.TableImpl ADDRESS = createField("address", org.jooq.test.postgres.generatedclasses.udt.UAddressType.U_ADDRESS_TYPE.getDataType(), this);
+ /**
+ * Create a public.v_author table reference
+ */
public VAuthor() {
super("v_author", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.v_author 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VBook.java
index 6c50e9685b..219270a582 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VBook.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VBook.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class VBook extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 260141594;
+ private static final long serialVersionUID = -887659047;
/**
* The singleton instance of public.v_book
@@ -74,10 +74,16 @@ public class VBook extends org.jooq.impl.TableImpl STATUS = createField("status", org.jooq.util.postgres.PostgresDataType.VARCHAR.asEnumDataType(org.jooq.test.postgres.generatedclasses.enums.UBookStatus.class), this);
+ /**
+ * Create a public.v_book table reference
+ */
public VBook() {
super("v_book", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.v_book 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VLibrary.java
index 9e79ded77f..d8b3d747f5 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VLibrary.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/VLibrary.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class VLibrary extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 1850064076;
+ private static final long serialVersionUID = 1593506947;
/**
* The singleton instance of public.v_library
@@ -34,10 +34,16 @@ public class VLibrary extends org.jooq.impl.TableImpl TITLE = createField("title", org.jooq.impl.SQLDataType.VARCHAR, this);
+ /**
+ * Create a public.v_library table reference
+ */
public VLibrary() {
super("v_library", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.v_library 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_64_69.java
index ff969d3960..51412bcdb8 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_64_69.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_64_69.java
@@ -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 {
- private static final long serialVersionUID = 368448890;
+ private static final long serialVersionUID = -799273069;
/**
* The singleton instance of public.x_test_case_64_69
@@ -42,10 +42,16 @@ public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl UNUSED_ID = createField("unused_id", org.jooq.impl.SQLDataType.INTEGER, this);
+ /**
+ * Create a public.x_test_case_64_69 table reference
+ */
public XTestCase_64_69() {
super("x_test_case_64_69", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.x_test_case_64_69 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_71.java
index 7dd0722a83..082772e9a7 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_71.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_71.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 742195132;
+ private static final long serialVersionUID = 1489863011;
/**
* The singleton instance of public.x_test_case_71
@@ -42,10 +42,16 @@ public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl TEST_CASE_64_69_ID = createField("test_case_64_69_id", org.jooq.impl.SQLDataType.SMALLINT, this);
+ /**
+ * Create a public.x_test_case_71 table reference
+ */
public XTestCase_71() {
super("x_test_case_71", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.x_test_case_71 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_85.java
index 9b9af0e0bc..3d0e9a3df7 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_85.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XTestCase_85.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1357903005;
+ private static final long serialVersionUID = -1472453388;
/**
* The singleton instance of public.x_test_case_85
@@ -53,10 +53,16 @@ public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl X_UNUSED_NAME = createField("x_unused_name", org.jooq.impl.SQLDataType.VARCHAR, this);
+ /**
+ * Create a public.x_test_case_85 table reference
+ */
public XTestCase_85() {
super("x_test_case_85", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.x_test_case_85 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);
}
diff --git a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XUnused.java
index 78afd3603b..b8ad5d648a 100644
--- a/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XUnused.java
+++ b/jOOQ-test/src/org/jooq/test/postgres/generatedclasses/tables/XUnused.java
@@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses.tables;
@java.lang.SuppressWarnings("all")
public class XUnused extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 2065268079;
+ private static final long serialVersionUID = 995410112;
/**
* The singleton instance of public.x_unused
@@ -115,10 +115,16 @@ public class XUnused extends org.jooq.impl.UpdatableTableImpl FIELD_737 = createField("FIELD 737", org.jooq.impl.SQLDataType.NUMERIC, this);
+ /**
+ * Create a public.x_unused table reference
+ */
public XUnused() {
super("x_unused", org.jooq.test.postgres.generatedclasses.Public.PUBLIC);
}
+ /**
+ * Create an aliased public.x_unused 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);
}