diff --git a/jOOQ-codegen/pom.xml b/jOOQ-codegen/pom.xml
index e57a9bca1f..22cc1fdfbb 100644
--- a/jOOQ-codegen/pom.xml
+++ b/jOOQ-codegen/pom.xml
@@ -127,6 +127,49 @@
true
+
+
+ org.apache.felix
+ maven-bundle-plugin
+ 2.1.0
+ true
+
+
+ bundle-manifest
+ process-classes
+
+ manifest
+
+
+
+
+
+ jar
+
+
+ ${project.artifactId}
+ *
+
+ javax.persistence;resolution:=optional,
+ oracle.sql;resolution:=optional,
+ org.apache.log4j;resolution:=optional,
+ *
+
+ <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))
+
+
+
+
+ org.apache.maven.plugins
+ maven-jar-plugin
+ 2.3.2
+
+
+
+ ${project.build.outputDirectory}/META-INF/MANIFEST.MF
+
+
+
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 525f10f4c7..5808a339bc 100644
--- a/jOOQ-codegen/src/main/java/org/jooq/util/DefaultGenerator.java
+++ b/jOOQ-codegen/src/main/java/org/jooq/util/DefaultGenerator.java
@@ -76,6 +76,7 @@ import org.jooq.TableField;
import org.jooq.UDT;
import org.jooq.UDTField;
import org.jooq.UniqueKey;
+import org.jooq.exception.DataAccessException;
import org.jooq.impl.AbstractKeys;
import org.jooq.impl.AbstractRoutine;
import org.jooq.impl.ArrayRecordImpl;
@@ -840,31 +841,6 @@ public class DefaultGenerator implements Generator {
out.print(strategy.getFullJavaIdentifierUC(table));
out.println(");");
out.println("\t}");
-
- if (generateDeprecated()) {
- out.println();
-
- out.println("\t/**");
- out.println("\t * Create an attached " + strategy.getJavaClassName(table, "Record"));
- out.println("\t * @deprecated - 1.6.4 [#363, #789] - use the other constructor instead for unattached");
- out.println("\t * records, or {@link org.jooq.impl.Factory#newRecord(org.jooq.Table)} for attached ones");
-
- out.println("\t */");
- out.println("\t@Deprecated");
-
- out.print("\tpublic ");
- out.print(strategy.getJavaClassName(table, "Record"));
- out.print("(");
- out.print(Configuration.class);
- out.println(" configuration) {");
-
- out.print("\t\tsuper(");
- out.print(strategy.getFullJavaIdentifierUC(table));
- out.println(", configuration);");
-
- out.println("\t}");
- }
-
out.println("}");
out.close();
} catch (Exception e) {
@@ -1598,6 +1574,7 @@ public class DefaultGenerator implements Generator {
out.println("\t * @param " + strategy.getJavaClassNameLC(parameter));
}
+ printThrowsDataAccessException(out);
out.println("\t */");
out.print("\tpublic static ");
@@ -1615,9 +1592,7 @@ public class DefaultGenerator implements Generator {
out.print(strategy.getJavaClassNameLC(parameter));
}
- out.print(") throws ");
- out.print(SQLException.class);
- out.println(" {");
+ out.println(") {");
out.print("\t\t");
out.print(strategy.getFullJavaClassName(function));
out.print(" f = new ");
@@ -1635,6 +1610,13 @@ public class DefaultGenerator implements Generator {
out.println("\t}");
}
+ private void printThrowsDataAccessException(GenerationWriter out) {
+ out.print("\t * @throws ");
+ out.print(DataAccessException.class);
+ out.print(" if something went wrong executing the query");
+ out.println();
+ }
+
private void printPrivateConstructor(GenerationWriter out, String javaClassName) {
out.println();
out.println("\t/**");
@@ -1669,6 +1651,7 @@ public class DefaultGenerator implements Generator {
}
}
+ printThrowsDataAccessException(out);
out.println("\t */");
out.print("\tpublic static ");
@@ -1695,9 +1678,7 @@ public class DefaultGenerator implements Generator {
out.print(strategy.getJavaClassNameLC(parameter));
}
- out.print(") throws ");
- out.print(SQLException.class);
- out.println(" {");
+ out.println(") {");
out.print("\t\t");
out.print(strategy.getFullJavaClassName(procedure));
out.print(" p = new ");
@@ -1866,10 +1847,7 @@ public class DefaultGenerator implements Generator {
out.print(strategy.getJavaClassName(foreignKey.getKeyColumns().get(0)));
}
- out.print("() throws ");
- out.print(SQLException.class);
- out.println(" {");
-
+ out.println("() {");
out.println("\t\treturn create()");
out.print("\t\t\t.selectFrom(");
out.print(strategy.getFullJavaIdentifierUC(referencing));
@@ -1941,10 +1919,7 @@ public class DefaultGenerator implements Generator {
out.print(strategy.getJavaClassName(column));
}
- out.print("() throws ");
- out.print(SQLException.class);
- out.println(" {");
-
+ out.println("() {");
out.println("\t\treturn create()");
out.print("\t\t\t.selectFrom(");
out.print(strategy.getFullJavaIdentifierUC(referenced));
@@ -2174,7 +2149,7 @@ public class DefaultGenerator implements Generator {
version = properties.getProperty("version");
}
catch (Exception e) {
- version = "1.6.8";
+ version = "unknown";
}
}
diff --git a/jOOQ-codegen/src/main/java/org/jooq/util/generator.properties b/jOOQ-codegen/src/main/java/org/jooq/util/generator.properties
index 7f2a99b14f..e997a9af99 100644
--- a/jOOQ-codegen/src/main/java/org/jooq/util/generator.properties
+++ b/jOOQ-codegen/src/main/java/org/jooq/util/generator.properties
@@ -1 +1 @@
-version=1.6.8
\ No newline at end of file
+version=2.0.0
\ No newline at end of file
diff --git a/jOOQ-meta/pom.xml b/jOOQ-meta/pom.xml
index e1d860735f..bbf61ab329 100644
--- a/jOOQ-meta/pom.xml
+++ b/jOOQ-meta/pom.xml
@@ -126,6 +126,49 @@
true
+
+
+ org.apache.felix
+ maven-bundle-plugin
+ 2.1.0
+ true
+
+
+ bundle-manifest
+ process-classes
+
+ manifest
+
+
+
+
+
+ jar
+
+
+ ${project.artifactId}
+ *
+
+ javax.persistence;resolution:=optional,
+ oracle.sql;resolution:=optional,
+ org.apache.log4j;resolution:=optional,
+ *
+
+ <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))
+
+
+
+
+ org.apache.maven.plugins
+ maven-jar-plugin
+ 2.3.2
+
+
+
+ ${project.build.outputDirectory}/META-INF/MANIFEST.MF
+
+
+
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/AbstractDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/AbstractDatabase.java
index ddb1bf2c8c..c593d3ba08 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/AbstractDatabase.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/AbstractDatabase.java
@@ -67,8 +67,6 @@ public abstract class AbstractDatabase implements Database {
private List enums;
private List udts;
private List arrays;
- private List procedures;
- private List functions;
private List routines;
private List packages;
private Relations relations;
@@ -328,50 +326,6 @@ public abstract class AbstractDatabase implements Database {
return relations;
}
- @Override
- @Deprecated
- public final List getProcedures() {
- if (procedures == null) {
- procedures = new ArrayList();
-
- try {
- List r = getRoutines();
-
- for (RoutineDefinition routine : r) {
- if (!routine.isSQLUsable()) {
- procedures.add(routine);
- }
- }
- } catch (Exception e) {
- log.error("Error while fetching procedures", e);
- }
- }
-
- return procedures;
- }
-
- @Override
- @Deprecated
- public final List getFunctions() {
- if (functions == null) {
- functions = new ArrayList();
-
- try {
- List r = getRoutines();
-
- for (RoutineDefinition routine : r) {
- if (routine.isSQLUsable()) {
- functions.add(routine);
- }
- }
- } catch (Exception e) {
- log.error("Error while fetching functions", e);
- }
- }
-
- return functions;
- }
-
@Override
public final List getRoutines() {
if (routines == null) {
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/AbstractDefinition.java b/jOOQ-meta/src/main/java/org/jooq/util/AbstractDefinition.java
index d8700c3031..047f564660 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/AbstractDefinition.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/AbstractDefinition.java
@@ -83,18 +83,6 @@ public abstract class AbstractDefinition implements Definition {
return name;
}
- @Override
- @Deprecated
- public final String getNameUC() {
- return name.toUpperCase();
- }
-
- @Override
- @Deprecated
- public final String getNameLC() {
- return name.toLowerCase();
- }
-
@Override
public final String getComment() {
return comment;
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/AbstractPackageDefinition.java b/jOOQ-meta/src/main/java/org/jooq/util/AbstractPackageDefinition.java
index 2b11e409ab..037790e29e 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/AbstractPackageDefinition.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/AbstractPackageDefinition.java
@@ -48,46 +48,12 @@ public abstract class AbstractPackageDefinition extends AbstractDefinition imple
private static final JooqLogger log = JooqLogger.getLogger(AbstractPackageDefinition.class);
- private List procedures;
- private List functions;
private List routines;
public AbstractPackageDefinition(Database database, String name, String comment) {
super(database, name, comment);
}
- @Override
- @Deprecated
- public final List getProcedures() {
- if (procedures == null) {
- procedures = new ArrayList();
-
- for (RoutineDefinition routine : getRoutines()) {
- if (!routine.isSQLUsable()) {
- procedures.add(routine);
- }
- }
- }
-
- return procedures;
- }
-
- @Override
- @Deprecated
- public final List getFunctions() {
- if (functions == null) {
- functions = new ArrayList();
-
- for (RoutineDefinition routine : getRoutines()) {
- if (routine.isSQLUsable()) {
- functions.add(routine);
- }
- }
- }
-
- return functions;
- }
-
@Override
public final List getRoutines() {
if (routines == null) {
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/ColumnDefinition.java b/jOOQ-meta/src/main/java/org/jooq/util/ColumnDefinition.java
index d62753ab8f..342e75743b 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/ColumnDefinition.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/ColumnDefinition.java
@@ -45,14 +45,6 @@ import java.util.List;
*/
public interface ColumnDefinition extends TypedElementDefinition {
- /**
- * The column's owner table
- *
- * @deprecated - 1.6.3 - Use {@link #getContainer()} instead
- */
- @Deprecated
- TableDefinition getTable();
-
/**
* The column position in the table
*/
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/Database.java b/jOOQ-meta/src/main/java/org/jooq/util/Database.java
index 721a796049..3704d16b91 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/Database.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/Database.java
@@ -122,38 +122,6 @@ public interface Database {
*/
List getRoutines();
- /**
- * The stored procedures contained in this database (for schema
- * {@link #getSchema()})
- *
- * @deprecated - 1.6.8 [#852] - The stored procedure / stored function
- * distinction has been reviewed in jOOQ. The 12 currently
- * supported RDBMS have such a distinct idea of what is a
- * procedure and what is a function that it makes no longer
- * sense to distinguish them generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for
- * more details.
- */
- @Deprecated
- List getProcedures();
-
- /**
- * The stored functions contained in this database (for schema
- * {@link #getSchema()})
- *
- * @deprecated - 1.6.8 [#852] - The stored procedure / stored function
- * distinction has been reviewed in jOOQ. The 12 currently
- * supported RDBMS have such a distinct idea of what is a
- * procedure and what is a function that it makes no longer
- * sense to distinguish them generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for
- * more details.
- */
- @Deprecated
- List getFunctions();
-
/**
* The packages contained in this database (for schema {@link #getSchema()})
*/
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/DefaultAttributeDefinition.java b/jOOQ-meta/src/main/java/org/jooq/util/DefaultAttributeDefinition.java
index 21277cc3a2..65dcd5573b 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/DefaultAttributeDefinition.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/DefaultAttributeDefinition.java
@@ -47,9 +47,4 @@ public class DefaultAttributeDefinition extends AbstractTypedElementDefinitionhttps://sourceforge.net/apps/trac/jooq/ticket/852 for
- * more details.
- */
- @Deprecated
- List getProcedures();
-
- /**
- * Fetch all stored functions from the package
- *
- * @deprecated - 1.6.8 [#852] - The stored procedure / stored function
- * distinction has been reviewed in jOOQ. The 12 currently
- * supported RDBMS have such a distinct idea of what is a
- * procedure and what is a function that it makes no longer
- * sense to distinguish them generally, in jOOQ. See https://sourceforge.net/apps/trac/jooq/ticket/852 for
- * more details.
- */
- @Deprecated
- List getFunctions();
-
/**
* Fetch all routines from the package
*/
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/ParameterDefinition.java b/jOOQ-meta/src/main/java/org/jooq/util/ParameterDefinition.java
index ec1b3ef4cb..94373592b8 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/ParameterDefinition.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/ParameterDefinition.java
@@ -42,12 +42,4 @@ package org.jooq.util;
*/
public interface ParameterDefinition extends TypedElementDefinition {
- /**
- * The parameter's owner callable
- *
- * @deprecated - 1.6.3 - Use {@link #getContainer()} instead
- */
- @Deprecated
- RoutineDefinition getCallable();
-
}
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/ase/ASEDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/ase/ASEDatabase.java
index aa2b62e3df..1258efa47e 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/ase/ASEDatabase.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/ase/ASEDatabase.java
@@ -120,7 +120,7 @@ public class ASEDatabase extends AbstractDatabase {
* >http://www.dbforums.com/sybase/1625012-sysindexes-question-testing-
* unique-clustered-indexes.html
*/
- private List fetchKeys(int incl, int excl) throws SQLException {
+ private List fetchKeys(int incl, int excl) {
return create().select(
field("name", String.class),
field("object_name(id)", String.class),
@@ -199,7 +199,7 @@ public class ASEDatabase extends AbstractDatabase {
return result;
}
- private List fetchTableNames() throws SQLException {
+ private List fetchTableNames() {
List result = new ArrayList();
for (Record record : create().fetch("sp_help")) {
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2Database.java b/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2Database.java
index 329f2500df..928cd3d969 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2Database.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2Database.java
@@ -117,7 +117,7 @@ public class DB2Database extends AbstractDatabase {
}
}
- private List fetchKeys(String constraintType) throws SQLException {
+ private List fetchKeys(String constraintType) {
return create().select(
Keycoluse.CONSTNAME,
Keycoluse.TABNAME,
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2RoutineDefinition.java b/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2RoutineDefinition.java
index 0025d74414..ed3f5bc83f 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2RoutineDefinition.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/db2/DB2RoutineDefinition.java
@@ -79,7 +79,7 @@ public class DB2RoutineDefinition extends AbstractRoutineDefinition {
}
}
- private void initF() throws SQLException {
+ private void initF() {
for (Record record : create()
.select(
Funcparms.ROWTYPE,
@@ -129,7 +129,7 @@ public class DB2RoutineDefinition extends AbstractRoutineDefinition {
}
}
- private void initP() throws SQLException {
+ private void initP() {
for (Record record : create().select(
Procparms.PARMNAME,
Procparms.TYPENAME,
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/derby/DerbyDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/derby/DerbyDatabase.java
index 36e25e3328..e6aec3247d 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/derby/DerbyDatabase.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/derby/DerbyDatabase.java
@@ -114,7 +114,7 @@ public class DerbyDatabase extends AbstractDatabase {
}
}
- private List fetchKeys(String constraintType) throws SQLException {
+ private List fetchKeys(String constraintType) {
return create().select(
Systables.TABLENAME,
Systables.TABLEID,
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/h2/H2Database.java b/jOOQ-meta/src/main/java/org/jooq/util/h2/H2Database.java
index 48e2befa94..a79d18de17 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/h2/H2Database.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/h2/H2Database.java
@@ -116,7 +116,7 @@ public class H2Database extends AbstractDatabase {
}
}
- private List fetchKeys(String constraintType) throws SQLException {
+ private List fetchKeys(String constraintType) {
return create().select(
Constraints.TABLE_NAME,
Constraints.COLUMN_LIST,
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/hsqldb/HSQLDBDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/hsqldb/HSQLDBDatabase.java
index 19a2dd60bc..afe350658a 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/hsqldb/HSQLDBDatabase.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/hsqldb/HSQLDBDatabase.java
@@ -118,7 +118,7 @@ public class HSQLDBDatabase extends AbstractDatabase {
}
}
- private List fetchKeys(String constraintType) throws SQLException {
+ private List fetchKeys(String constraintType) {
return create()
.select(KeyColumnUsage.CONSTRAINT_NAME, KeyColumnUsage.TABLE_NAME, KeyColumnUsage.COLUMN_NAME)
.from(TABLE_CONSTRAINTS)
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/ingres/IngresDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/ingres/IngresDatabase.java
index df2000d80c..079c4c4100 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/ingres/IngresDatabase.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/ingres/IngresDatabase.java
@@ -110,7 +110,7 @@ public class IngresDatabase extends AbstractDatabase {
}
}
- private List fetchKeys(String constraintType) throws SQLException {
+ private List fetchKeys(String constraintType) {
return create().select(
Iiconstraints.TABLE_NAME.trim(),
Iiconstraints.CONSTRAINT_NAME.trim(),
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/MySQLDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/MySQLDatabase.java
index 538f543f55..72fcf8f5c8 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/MySQLDatabase.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/MySQLDatabase.java
@@ -112,7 +112,7 @@ public class MySQLDatabase extends AbstractDatabase {
return "KEY_" + tableName + "_" + keyName;
}
- private List fetchKeys(String constraintType) throws SQLException {
+ private List fetchKeys(String constraintType) {
return create().select(
KeyColumnUsage.CONSTRAINT_NAME,
KeyColumnUsage.TABLE_NAME,
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/oracle/OracleDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/oracle/OracleDatabase.java
index f531112a88..b2e916340e 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/oracle/OracleDatabase.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/oracle/OracleDatabase.java
@@ -116,7 +116,7 @@ public class OracleDatabase extends AbstractDatabase {
}
}
- private List fetchKeys(String constraintType) throws SQLException {
+ private List fetchKeys(String constraintType) {
return create().select(
AllConsColumns.CONSTRAINT_NAME,
AllConsColumns.TABLE_NAME,
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/PostgresDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/PostgresDatabase.java
index 2144d9af07..f3fc95e645 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/PostgresDatabase.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/PostgresDatabase.java
@@ -125,7 +125,7 @@ public class PostgresDatabase extends AbstractDatabase {
}
}
- private List fetchKeys(String constraintType) throws SQLException {
+ private List fetchKeys(String constraintType) {
return create()
.select(KeyColumnUsage.CONSTRAINT_NAME, KeyColumnUsage.TABLE_NAME, KeyColumnUsage.COLUMN_NAME)
.from(TABLE_CONSTRAINTS)
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalog.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalog.java
index dea27ba007..c52169aca1 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalog.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalog.java
@@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PgCatalog extends org.jooq.impl.SchemaImpl {
- private static final long serialVersionUID = 983516812;
+ private static final long serialVersionUID = 1809852031;
/**
* The singleton instance of pg_catalog
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalogFactory.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalogFactory.java
index 95a3beb6a2..b0cd1a6c34 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalogFactory.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalogFactory.java
@@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PgCatalogFactory extends org.jooq.util.postgres.PostgresFactory {
- private static final long serialVersionUID = -1057336342;
+ private static final long serialVersionUID = 2011530141;
/**
* Create a factory with a connection
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Routines.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Routines.java
index e9c5088366..b482225973 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Routines.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Routines.java
@@ -8,7 +8,7 @@ package org.jooq.util.postgres.pg_catalog;
*
* Convenience access to all stored procedures and functions in pg_catalog
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public final class Routines {
@@ -17,8 +17,9 @@ public final class Routines {
*
* @param __1
* @param __2
+ * @throws org.jooq.exception.DataAccessException if something went wrong executing the query
*/
- public static java.lang.String formatType(org.jooq.Configuration configuration, java.lang.Long __1, java.lang.Integer __2) throws java.sql.SQLException {
+ public static java.lang.String formatType(org.jooq.Configuration configuration, java.lang.Long __1, java.lang.Integer __2) {
org.jooq.util.postgres.pg_catalog.routines.FormatType f = new org.jooq.util.postgres.pg_catalog.routines.FormatType();
f.set__1(__1);
f.set__2(__2);
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/FormatType.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/FormatType.java
index 207e00b38f..1a6768ee98 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/FormatType.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/FormatType.java
@@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.routines;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class FormatType extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = 988703117;
+ private static final long serialVersionUID = 1575827642;
/**
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgAttribute.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgAttribute.java
index 29823e7bfc..9e0c8f30f9 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgAttribute.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgAttribute.java
@@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PgAttribute extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -1758823838;
+ private static final long serialVersionUID = 988686159;
/**
* The singleton instance of pg_attribute
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgClass.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgClass.java
index eb4c2c8d20..178ad15117 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgClass.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgClass.java
@@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PgClass extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 54584224;
+ private static final long serialVersionUID = 867479885;
/**
* The singleton instance of pg_class
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgEnum.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgEnum.java
index 8f7150f639..13e6d36325 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgEnum.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgEnum.java
@@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PgEnum extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -2027701323;
+ private static final long serialVersionUID = -1193939928;
/**
* The singleton instance of pg_enum
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgProc.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgProc.java
index 836659e4e4..94547f1b03 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgProc.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgProc.java
@@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PgProc extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -760461353;
+ private static final long serialVersionUID = -116055862;
/**
* The singleton instance of pg_proc
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgType.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgType.java
index a7dc1ab2a6..4833b81d08 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgType.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgType.java
@@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PgType extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -1447393922;
+ private static final long serialVersionUID = -105484885;
/**
* The singleton instance of pg_type
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgAttributeRecord.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgAttributeRecord.java
index ef3ab28e9d..5d3520e80d 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgAttributeRecord.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgAttributeRecord.java
@@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables.records;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PgAttributeRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = -293465921;
+ private static final long serialVersionUID = -334791886;
/**
* An uncommented item
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgClassRecord.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgClassRecord.java
index a80222d314..398d94f3e9 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgClassRecord.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgClassRecord.java
@@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables.records;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PgClassRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = 76146041;
+ private static final long serialVersionUID = 1348614572;
/**
* An uncommented item
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgEnumRecord.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgEnumRecord.java
index 6c5dda7310..53e9f40f76 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgEnumRecord.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgEnumRecord.java
@@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables.records;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PgEnumRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = 1356558793;
+ private static final long serialVersionUID = -262925572;
/**
* An uncommented item
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgProcRecord.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgProcRecord.java
index 429b7fc075..400a553be8 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgProcRecord.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgProcRecord.java
@@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables.records;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PgProcRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = 368545333;
+ private static final long serialVersionUID = -308195864;
/**
* An uncommented item
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgTypeRecord.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgTypeRecord.java
index 8981d33d70..fda11e5517 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgTypeRecord.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/records/PgTypeRecord.java
@@ -6,11 +6,11 @@ package org.jooq.util.postgres.pg_catalog.tables.records;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PgTypeRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = 1574350423;
+ private static final long serialVersionUID = -460004662;
/**
* An uncommented item
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/sqlserver/SQLServerDatabase.java b/jOOQ-meta/src/main/java/org/jooq/util/sqlserver/SQLServerDatabase.java
index 87ff311150..6c7d35ef97 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/sqlserver/SQLServerDatabase.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/sqlserver/SQLServerDatabase.java
@@ -115,7 +115,7 @@ public class SQLServerDatabase extends AbstractDatabase {
}
}
- private List fetchKeys(String constraintType) throws SQLException {
+ private List fetchKeys(String constraintType) {
return create()
.select(KeyColumnUsage.CONSTRAINT_NAME, KeyColumnUsage.TABLE_NAME, KeyColumnUsage.COLUMN_NAME)
.from(TABLE_CONSTRAINTS)
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Keys.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Keys.java
index e40efe5d4f..33a323a2cf 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Keys.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Keys.java
@@ -8,7 +8,7 @@ package org.jooq.examples.mysql.sakila;
*
* A class modelling foreign key relationships between tables of the sakila schema
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
@SuppressWarnings({"unchecked"})
public class Keys extends org.jooq.impl.AbstractKeys {
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Routines.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Routines.java
index ad2b2f422b..4796bfbbd4 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Routines.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Routines.java
@@ -8,7 +8,7 @@ package org.jooq.examples.mysql.sakila;
*
* Convenience access to all stored procedures and functions in sakila
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public final class Routines {
@@ -18,8 +18,9 @@ public final class Routines {
* @param pFilmId IN parameter
* @param pStoreId IN parameter
* @param pFilmCount OUT parameter
+ * @throws org.jooq.exception.DataAccessException if something went wrong executing the query
*/
- public static java.lang.Integer filmInStock(org.jooq.Configuration configuration, java.lang.Integer pFilmId, java.lang.Integer pStoreId) throws java.sql.SQLException {
+ public static java.lang.Integer filmInStock(org.jooq.Configuration configuration, java.lang.Integer pFilmId, java.lang.Integer pStoreId) {
org.jooq.examples.mysql.sakila.routines.FilmInStock p = new org.jooq.examples.mysql.sakila.routines.FilmInStock();
p.setPFilmId(pFilmId);
p.setPStoreId(pStoreId);
@@ -34,8 +35,9 @@ public final class Routines {
* @param pFilmId IN parameter
* @param pStoreId IN parameter
* @param pFilmCount OUT parameter
+ * @throws org.jooq.exception.DataAccessException if something went wrong executing the query
*/
- public static java.lang.Integer filmNotInStock(org.jooq.Configuration configuration, java.lang.Integer pFilmId, java.lang.Integer pStoreId) throws java.sql.SQLException {
+ public static java.lang.Integer filmNotInStock(org.jooq.Configuration configuration, java.lang.Integer pFilmId, java.lang.Integer pStoreId) {
org.jooq.examples.mysql.sakila.routines.FilmNotInStock p = new org.jooq.examples.mysql.sakila.routines.FilmNotInStock();
p.setPFilmId(pFilmId);
p.setPStoreId(pStoreId);
@@ -49,8 +51,9 @@ public final class Routines {
*
* @param pCustomerId
* @param pEffectiveDate
+ * @throws org.jooq.exception.DataAccessException if something went wrong executing the query
*/
- public static java.math.BigDecimal getCustomerBalance(org.jooq.Configuration configuration, java.lang.Integer pCustomerId, java.sql.Timestamp pEffectiveDate) throws java.sql.SQLException {
+ public static java.math.BigDecimal getCustomerBalance(org.jooq.Configuration configuration, java.lang.Integer pCustomerId, java.sql.Timestamp pEffectiveDate) {
org.jooq.examples.mysql.sakila.routines.GetCustomerBalance f = new org.jooq.examples.mysql.sakila.routines.GetCustomerBalance();
f.setPCustomerId(pCustomerId);
f.setPEffectiveDate(pEffectiveDate);
@@ -91,8 +94,9 @@ public final class Routines {
* Invoke INVENTORY_HELD_BY_CUSTOMER
*
* @param pInventoryId
+ * @throws org.jooq.exception.DataAccessException if something went wrong executing the query
*/
- public static java.lang.Integer inventoryHeldByCustomer(org.jooq.Configuration configuration, java.lang.Integer pInventoryId) throws java.sql.SQLException {
+ public static java.lang.Integer inventoryHeldByCustomer(org.jooq.Configuration configuration, java.lang.Integer pInventoryId) {
org.jooq.examples.mysql.sakila.routines.InventoryHeldByCustomer f = new org.jooq.examples.mysql.sakila.routines.InventoryHeldByCustomer();
f.setPInventoryId(pInventoryId);
@@ -128,8 +132,9 @@ public final class Routines {
* Invoke INVENTORY_IN_STOCK
*
* @param pInventoryId
+ * @throws org.jooq.exception.DataAccessException if something went wrong executing the query
*/
- public static java.lang.Byte inventoryInStock(org.jooq.Configuration configuration, java.lang.Integer pInventoryId) throws java.sql.SQLException {
+ public static java.lang.Byte inventoryInStock(org.jooq.Configuration configuration, java.lang.Integer pInventoryId) {
org.jooq.examples.mysql.sakila.routines.InventoryInStock f = new org.jooq.examples.mysql.sakila.routines.InventoryInStock();
f.setPInventoryId(pInventoryId);
@@ -167,8 +172,9 @@ public final class Routines {
* @param minMonthlyPurchases IN parameter
* @param minDollarAmountPurchased IN parameter
* @param countRewardees OUT parameter
+ * @throws org.jooq.exception.DataAccessException if something went wrong executing the query
*/
- public static java.lang.Integer rewardsReport(org.jooq.Configuration configuration, java.lang.Byte minMonthlyPurchases, java.math.BigDecimal minDollarAmountPurchased) throws java.sql.SQLException {
+ public static java.lang.Integer rewardsReport(org.jooq.Configuration configuration, java.lang.Byte minMonthlyPurchases, java.math.BigDecimal minDollarAmountPurchased) {
org.jooq.examples.mysql.sakila.routines.RewardsReport p = new org.jooq.examples.mysql.sakila.routines.RewardsReport();
p.setMinMonthlyPurchases(minMonthlyPurchases);
p.setMinDollarAmountPurchased(minDollarAmountPurchased);
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Sakila.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Sakila.java
index a79ae5c3ea..48cf711ff3 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Sakila.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/Sakila.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Sakila extends org.jooq.impl.SchemaImpl {
- private static final long serialVersionUID = -1482066181;
+ private static final long serialVersionUID = 550021934;
/**
* The singleton instance of sakila
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/SakilaFactory.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/SakilaFactory.java
index 4e00fe904a..376e729f41 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/SakilaFactory.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/SakilaFactory.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class SakilaFactory extends org.jooq.util.mysql.MySQLFactory {
- private static final long serialVersionUID = -386617597;
+ private static final long serialVersionUID = 1680109488;
/**
* Create a factory with a connection
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmListRating.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmListRating.java
index fd6f7a842d..b84b0ff749 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmListRating.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmListRating.java
@@ -6,7 +6,7 @@ package org.jooq.examples.mysql.sakila.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public enum FilmListRating implements org.jooq.EnumType {
G("G"),
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmRating.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmRating.java
index 7aa2e4ed57..712f39a3e0 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmRating.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/FilmRating.java
@@ -6,7 +6,7 @@ package org.jooq.examples.mysql.sakila.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public enum FilmRating implements org.jooq.EnumType {
G("G"),
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/NicerButSlowerFilmListRating.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/NicerButSlowerFilmListRating.java
index e770320625..f8351f5bda 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/NicerButSlowerFilmListRating.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/enums/NicerButSlowerFilmListRating.java
@@ -6,7 +6,7 @@ package org.jooq.examples.mysql.sakila.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public enum NicerButSlowerFilmListRating implements org.jooq.EnumType {
G("G"),
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmInStock.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmInStock.java
index b32c0dee69..938a6cba8f 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmInStock.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmInStock.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.routines;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class FilmInStock extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = 134366551;
+ private static final long serialVersionUID = -796636086;
/**
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmNotInStock.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmNotInStock.java
index 0ef9f9a052..3c164207af 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmNotInStock.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/FilmNotInStock.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.routines;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class FilmNotInStock extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = 194545433;
+ private static final long serialVersionUID = 1256241740;
/**
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/GetCustomerBalance.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/GetCustomerBalance.java
index 748676b34f..41f68e61a8 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/GetCustomerBalance.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/GetCustomerBalance.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.routines;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class GetCustomerBalance extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = 631731635;
+ private static final long serialVersionUID = -1795174624;
/**
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryHeldByCustomer.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryHeldByCustomer.java
index 1c4af6a74b..9f6e64889e 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryHeldByCustomer.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryHeldByCustomer.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.routines;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class InventoryHeldByCustomer extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = -2068629393;
+ private static final long serialVersionUID = -2035383390;
/**
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryInStock.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryInStock.java
index 895103005c..aa4742e990 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryInStock.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/InventoryInStock.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.routines;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class InventoryInStock extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = 1630294309;
+ private static final long serialVersionUID = 1403674706;
/**
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/RewardsReport.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/RewardsReport.java
index 69c5e4ac7c..0f29a7749d 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/RewardsReport.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/routines/RewardsReport.java
@@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.routines;
*
* Provides a customizable report on best customers
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class RewardsReport extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = -1687570424;
+ private static final long serialVersionUID = 774145595;
/**
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Actor.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Actor.java
index a803182e54..8a0c249313 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Actor.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Actor.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Actor extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -275976155;
+ private static final long serialVersionUID = 770113234;
/**
* The singleton instance of actor
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/ActorInfo.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/ActorInfo.java
index 631838f453..6ae8f945c6 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/ActorInfo.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/ActorInfo.java
@@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables;
*
* VIEW
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class ActorInfo extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 944323977;
+ private static final long serialVersionUID = -832128330;
/**
* The singleton instance of actor_info
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Address.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Address.java
index 188301b4a8..76df24449a 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Address.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Address.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Address extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -2110007841;
+ private static final long serialVersionUID = -2003093358;
/**
* The singleton instance of address
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Category.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Category.java
index 2c7acaae8a..f01be31e64 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Category.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Category.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Category extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -1178997765;
+ private static final long serialVersionUID = 303561000;
/**
* The singleton instance of category
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/City.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/City.java
index e489e77e31..f0678c0880 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/City.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/City.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class City extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -847587354;
+ private static final long serialVersionUID = -1083672109;
/**
* The singleton instance of city
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Country.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Country.java
index 777bfea9ad..03875badbd 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Country.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Country.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Country extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 2057134811;
+ private static final long serialVersionUID = 1583843534;
/**
* The singleton instance of country
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Customer.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Customer.java
index dd4c837ba5..153855a34c 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Customer.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Customer.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Customer extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 2116895802;
+ private static final long serialVersionUID = 1839370797;
/**
* The singleton instance of customer
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/CustomerList.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/CustomerList.java
index d14f82fb3f..ec3d9e4e38 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/CustomerList.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/CustomerList.java
@@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables;
*
* VIEW
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class CustomerList extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 1187425779;
+ private static final long serialVersionUID = 1228613216;
/**
* The singleton instance of customer_list
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Film.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Film.java
index 707e392bc0..1dfa816b67 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Film.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Film.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Film extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1331408020;
+ private static final long serialVersionUID = -1533479929;
/**
* The singleton instance of film
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmActor.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmActor.java
index 0157084296..b7410f6fc7 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmActor.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmActor.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class FilmActor extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1376192217;
+ private static final long serialVersionUID = -1500724922;
/**
* The singleton instance of film_actor
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmCategory.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmCategory.java
index a8ea6ff76f..eb1b7f0e6d 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmCategory.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmCategory.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class FilmCategory extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -727739384;
+ private static final long serialVersionUID = -1827377669;
/**
* The singleton instance of film_category
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmList.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmList.java
index cff9085728..9c9d218d49 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmList.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmList.java
@@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables;
*
* VIEW
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class FilmList extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -280163552;
+ private static final long serialVersionUID = -1772977389;
/**
* The singleton instance of film_list
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmText.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmText.java
index 4f78bb7b40..859114dd1a 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmText.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/FilmText.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class FilmText extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 793216157;
+ private static final long serialVersionUID = 1089550736;
/**
* The singleton instance of film_text
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Inventory.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Inventory.java
index a479087945..5c6bf26f37 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Inventory.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Inventory.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Inventory extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -601531818;
+ private static final long serialVersionUID = 275888969;
/**
* The singleton instance of inventory
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Language.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Language.java
index a0c7462b9b..36069a33cb 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Language.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Language.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Language extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1150018250;
+ private static final long serialVersionUID = -107238211;
/**
* The singleton instance of language
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/NicerButSlowerFilmList.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/NicerButSlowerFilmList.java
index 93f5309f52..1a96cd436b 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/NicerButSlowerFilmList.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/NicerButSlowerFilmList.java
@@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables;
*
* VIEW
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class NicerButSlowerFilmList extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 206482185;
+ private static final long serialVersionUID = 288326902;
/**
* The singleton instance of nicer_but_slower_film_list
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Payment.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Payment.java
index c9477fd562..f6ad30c658 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Payment.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Payment.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Payment extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 188979002;
+ private static final long serialVersionUID = 263582829;
/**
* The singleton instance of payment
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Rental.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Rental.java
index 84852974aa..c9251f75ae 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Rental.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Rental.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Rental extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -1607346682;
+ private static final long serialVersionUID = -1075816717;
/**
* The singleton instance of rental
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByFilmCategory.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByFilmCategory.java
index 7a1c78e8b4..227999ca4f 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByFilmCategory.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByFilmCategory.java
@@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables;
*
* VIEW
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class SalesByFilmCategory extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 1872656502;
+ private static final long serialVersionUID = 578034601;
/**
* The singleton instance of sales_by_film_category
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByStore.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByStore.java
index ef1f8af900..49bd064885 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByStore.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/SalesByStore.java
@@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables;
*
* VIEW
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class SalesByStore extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -595852613;
+ private static final long serialVersionUID = 677143406;
/**
* The singleton instance of sales_by_store
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Staff.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Staff.java
index e035506a67..a49fd9e9f1 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Staff.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Staff.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Staff extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 757418646;
+ private static final long serialVersionUID = 424041673;
/**
* The singleton instance of staff
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/StaffList.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/StaffList.java
index 541795e8d1..7f159348ab 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/StaffList.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/StaffList.java
@@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables;
*
* VIEW
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class StaffList extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -1545202730;
+ private static final long serialVersionUID = -426970295;
/**
* The singleton instance of staff_list
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Store.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Store.java
index a1feefb3b5..9d108f81c8 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Store.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/Store.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Store extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 536949998;
+ private static final long serialVersionUID = -1985836895;
/**
* The singleton instance of store
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/ActorInfoRecord.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/ActorInfoRecord.java
index dd59bb6699..bc3bccbad5 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/ActorInfoRecord.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/ActorInfoRecord.java
@@ -8,11 +8,11 @@ package org.jooq.examples.mysql.sakila.tables.records;
*
* VIEW
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class ActorInfoRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = -1894727407;
+ private static final long serialVersionUID = 1400853071;
/**
* An uncommented item
@@ -76,14 +76,4 @@ public class ActorInfoRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = -526265931;
+ private static final long serialVersionUID = -2044534742;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class ActorRecord extends org.jooq.impl.UpdatableRecordImpl fetchFilmActorList() throws java.sql.SQLException {
+ public java.util.List fetchFilmActorList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.FilmActor.FILM_ACTOR)
.where(org.jooq.examples.mysql.sakila.tables.FilmActor.ACTOR_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Actor.ACTOR_ID)))
@@ -90,14 +90,4 @@ public class ActorRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = 1475338319;
+ private static final long serialVersionUID = 90534782;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class AddressRecord extends org.jooq.impl.UpdatableRecordImpl fetchCustomerList() throws java.sql.SQLException {
+ public java.util.List fetchCustomerList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER)
.where(org.jooq.examples.mysql.sakila.tables.Customer.ADDRESS_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS_ID)))
@@ -47,7 +47,7 @@ public class AddressRecord extends org.jooq.impl.UpdatableRecordImpl fetchStaffList() throws java.sql.SQLException {
+ public java.util.List fetchStaffList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Staff.STAFF)
.where(org.jooq.examples.mysql.sakila.tables.Staff.ADDRESS_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS_ID)))
@@ -59,7 +59,7 @@ public class AddressRecord extends org.jooq.impl.UpdatableRecordImpl fetchStoreList() throws java.sql.SQLException {
+ public java.util.List fetchStoreList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Store.STORE)
.where(org.jooq.examples.mysql.sakila.tables.Store.ADDRESS_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS_ID)))
@@ -140,7 +140,7 @@ public class AddressRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.CityRecord fetchCity() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.CityRecord fetchCity() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.City.CITY)
.where(org.jooq.examples.mysql.sakila.tables.City.CITY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Address.CITY_ID)))
@@ -195,14 +195,4 @@ public class AddressRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -206769087;
+ private static final long serialVersionUID = -430880012;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class CategoryRecord extends org.jooq.impl.UpdatableRecordImpl fetchFilmCategoryList() throws java.sql.SQLException {
+ public java.util.List fetchFilmCategoryList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.FilmCategory.FILM_CATEGORY)
.where(org.jooq.examples.mysql.sakila.tables.FilmCategory.CATEGORY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Category.CATEGORY_ID)))
@@ -76,14 +76,4 @@ public class CategoryRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = 798690616;
+ private static final long serialVersionUID = 269426923;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class CityRecord extends org.jooq.impl.UpdatableRecordImpl fetchAddressList() throws java.sql.SQLException {
+ public java.util.List fetchAddressList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS)
.where(org.jooq.examples.mysql.sakila.tables.Address.CITY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.City.CITY_ID)))
@@ -88,7 +88,7 @@ public class CityRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.CountryRecord fetchCountry() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.CountryRecord fetchCountry() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Country.COUNTRY)
.where(org.jooq.examples.mysql.sakila.tables.Country.COUNTRY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.City.COUNTRY_ID)))
@@ -115,14 +115,4 @@ public class CityRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -514614941;
+ private static final long serialVersionUID = -1439031168;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class CountryRecord extends org.jooq.impl.UpdatableRecordImpl fetchCityList() throws java.sql.SQLException {
+ public java.util.List fetchCityList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.City.CITY)
.where(org.jooq.examples.mysql.sakila.tables.City.COUNTRY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Country.COUNTRY_ID)))
@@ -76,14 +76,4 @@ public class CountryRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = 1268346155;
+ private static final long serialVersionUID = -665119557;
/**
* An uncommented item
@@ -146,14 +146,4 @@ public class CustomerListRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = 1894973647;
+ private static final long serialVersionUID = -372163132;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class CustomerRecord extends org.jooq.impl.UpdatableRecordImpl fetchPaymentList() throws java.sql.SQLException {
+ public java.util.List fetchPaymentList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Payment.PAYMENT)
.where(org.jooq.examples.mysql.sakila.tables.Payment.CUSTOMER_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER_ID)))
@@ -47,7 +47,7 @@ public class CustomerRecord extends org.jooq.impl.UpdatableRecordImpl fetchRentalList() throws java.sql.SQLException {
+ public java.util.List fetchRentalList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Rental.RENTAL)
.where(org.jooq.examples.mysql.sakila.tables.Rental.CUSTOMER_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER_ID)))
@@ -86,7 +86,7 @@ public class CustomerRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.StoreRecord fetchStore() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.StoreRecord fetchStore() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Store.STORE)
.where(org.jooq.examples.mysql.sakila.tables.Store.STORE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Customer.STORE_ID)))
@@ -167,7 +167,7 @@ public class CustomerRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.AddressRecord fetchAddress() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.AddressRecord fetchAddress() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS)
.where(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Customer.ADDRESS_ID)))
@@ -222,14 +222,4 @@ public class CustomerRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = 984586099;
+ private static final long serialVersionUID = -1884969897;
/**
* An uncommented item
@@ -50,7 +50,7 @@ public class FilmActorRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.ActorRecord fetchActor() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.ActorRecord fetchActor() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Actor.ACTOR)
.where(org.jooq.examples.mysql.sakila.tables.Actor.ACTOR_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.FilmActor.ACTOR_ID)))
@@ -95,7 +95,7 @@ public class FilmActorRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.FilmRecord fetchFilm() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.FilmRecord fetchFilm() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Film.FILM)
.where(org.jooq.examples.mysql.sakila.tables.Film.FILM_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.FilmActor.FILM_ID)))
@@ -122,14 +122,4 @@ public class FilmActorRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -729546860;
+ private static final long serialVersionUID = -698267418;
/**
* An uncommented item
@@ -50,7 +50,7 @@ public class FilmCategoryRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.FilmRecord fetchFilm() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.FilmRecord fetchFilm() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Film.FILM)
.where(org.jooq.examples.mysql.sakila.tables.Film.FILM_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.FilmCategory.FILM_ID)))
@@ -95,7 +95,7 @@ public class FilmCategoryRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.CategoryRecord fetchCategory() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.CategoryRecord fetchCategory() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Category.CATEGORY)
.where(org.jooq.examples.mysql.sakila.tables.Category.CATEGORY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.FilmCategory.CATEGORY_ID)))
@@ -122,14 +122,4 @@ public class FilmCategoryRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -40627865;
+ private static final long serialVersionUID = -1682189513;
/**
* An uncommented item
@@ -132,14 +132,4 @@ public class FilmListRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = 134244178;
+ private static final long serialVersionUID = -1456197169;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class FilmRecord extends org.jooq.impl.UpdatableRecordImpl fetchFilmActorList() throws java.sql.SQLException {
+ public java.util.List fetchFilmActorList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.FilmActor.FILM_ACTOR)
.where(org.jooq.examples.mysql.sakila.tables.FilmActor.FILM_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Film.FILM_ID)))
@@ -47,7 +47,7 @@ public class FilmRecord extends org.jooq.impl.UpdatableRecordImpl fetchFilmCategoryList() throws java.sql.SQLException {
+ public java.util.List fetchFilmCategoryList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.FilmCategory.FILM_CATEGORY)
.where(org.jooq.examples.mysql.sakila.tables.FilmCategory.FILM_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Film.FILM_ID)))
@@ -59,7 +59,7 @@ public class FilmRecord extends org.jooq.impl.UpdatableRecordImpl fetchInventoryList() throws java.sql.SQLException {
+ public java.util.List fetchInventoryList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Inventory.INVENTORY)
.where(org.jooq.examples.mysql.sakila.tables.Inventory.FILM_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Film.FILM_ID)))
@@ -140,7 +140,7 @@ public class FilmRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.LanguageRecord fetchLanguageByLanguageId() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.LanguageRecord fetchLanguageByLanguageId() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Language.LANGUAGE)
.where(org.jooq.examples.mysql.sakila.tables.Language.LANGUAGE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Film.LANGUAGE_ID)))
@@ -179,7 +179,7 @@ public class FilmRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.LanguageRecord fetchLanguageByOriginalLanguageId() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.LanguageRecord fetchLanguageByOriginalLanguageId() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Language.LANGUAGE)
.where(org.jooq.examples.mysql.sakila.tables.Language.LANGUAGE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Film.ORIGINAL_LANGUAGE_ID)))
@@ -290,14 +290,4 @@ public class FilmRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -462348424;
+ private static final long serialVersionUID = -2037559610;
/**
* An uncommented item
@@ -64,14 +64,4 @@ public class FilmTextRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = 165193927;
+ private static final long serialVersionUID = -1209122156;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class InventoryRecord extends org.jooq.impl.UpdatableRecordImpl fetchRentalList() throws java.sql.SQLException {
+ public java.util.List fetchRentalList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Rental.RENTAL)
.where(org.jooq.examples.mysql.sakila.tables.Rental.INVENTORY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Inventory.INVENTORY_ID)))
@@ -74,7 +74,7 @@ public class InventoryRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.FilmRecord fetchFilm() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.FilmRecord fetchFilm() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Film.FILM)
.where(org.jooq.examples.mysql.sakila.tables.Film.FILM_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Inventory.FILM_ID)))
@@ -113,7 +113,7 @@ public class InventoryRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.StoreRecord fetchStore() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.StoreRecord fetchStore() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Store.STORE)
.where(org.jooq.examples.mysql.sakila.tables.Store.STORE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Inventory.STORE_ID)))
@@ -140,14 +140,4 @@ public class InventoryRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -1696856415;
+ private static final long serialVersionUID = -2035542076;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class LanguageRecord extends org.jooq.impl.UpdatableRecordImpl fetchFilmListByLanguageId() throws java.sql.SQLException {
+ public java.util.List fetchFilmListByLanguageId() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Film.FILM)
.where(org.jooq.examples.mysql.sakila.tables.Film.LANGUAGE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Language.LANGUAGE_ID)))
@@ -47,7 +47,7 @@ public class LanguageRecord extends org.jooq.impl.UpdatableRecordImpl fetchFilmListByOriginalLanguageId() throws java.sql.SQLException {
+ public java.util.List fetchFilmListByOriginalLanguageId() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Film.FILM)
.where(org.jooq.examples.mysql.sakila.tables.Film.ORIGINAL_LANGUAGE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Language.LANGUAGE_ID)))
@@ -88,14 +88,4 @@ public class LanguageRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = 1311609919;
+ private static final long serialVersionUID = -1150882026;
/**
* An uncommented item
@@ -132,14 +132,4 @@ public class NicerButSlowerFilmListRecord extends org.jooq.impl.TableRecordImpl<
public NicerButSlowerFilmListRecord() {
super(org.jooq.examples.mysql.sakila.tables.NicerButSlowerFilmList.NICER_BUT_SLOWER_FILM_LIST);
}
-
- /**
- * Create an attached NicerButSlowerFilmListRecord
- * @deprecated - 1.6.4 [#363, #789] - use the other constructor instead for unattached
- * records, or {@link org.jooq.impl.Factory#newRecord(org.jooq.Table)} for attached ones
- */
- @Deprecated
- public NicerButSlowerFilmListRecord(org.jooq.Configuration configuration) {
- super(org.jooq.examples.mysql.sakila.tables.NicerButSlowerFilmList.NICER_BUT_SLOWER_FILM_LIST, configuration);
- }
}
diff --git a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/PaymentRecord.java b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/PaymentRecord.java
index 328bffb46b..24fa4c925f 100644
--- a/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/PaymentRecord.java
+++ b/jOOQ-test/examples/org/jooq/examples/mysql/sakila/tables/records/PaymentRecord.java
@@ -6,11 +6,11 @@ package org.jooq.examples.mysql.sakila.tables.records;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PaymentRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = 752994409;
+ private static final long serialVersionUID = -1067006230;
/**
* An uncommented item
@@ -62,7 +62,7 @@ public class PaymentRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.CustomerRecord fetchCustomer() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.CustomerRecord fetchCustomer() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER)
.where(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Payment.CUSTOMER_ID)))
@@ -101,7 +101,7 @@ public class PaymentRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.StaffRecord fetchStaff() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.StaffRecord fetchStaff() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Staff.STAFF)
.where(org.jooq.examples.mysql.sakila.tables.Staff.STAFF_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Payment.STAFF_ID)))
@@ -140,7 +140,7 @@ public class PaymentRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.RentalRecord fetchRental() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.RentalRecord fetchRental() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Rental.RENTAL)
.where(org.jooq.examples.mysql.sakila.tables.Rental.RENTAL_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Payment.RENTAL_ID)))
@@ -195,14 +195,4 @@ public class PaymentRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = 454811935;
+ private static final long serialVersionUID = -2029814380;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class RentalRecord extends org.jooq.impl.UpdatableRecordImpl fetchPaymentList() throws java.sql.SQLException {
+ public java.util.List fetchPaymentList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Payment.PAYMENT)
.where(org.jooq.examples.mysql.sakila.tables.Payment.RENTAL_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Rental.RENTAL_ID)))
@@ -88,7 +88,7 @@ public class RentalRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.InventoryRecord fetchInventory() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.InventoryRecord fetchInventory() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Inventory.INVENTORY)
.where(org.jooq.examples.mysql.sakila.tables.Inventory.INVENTORY_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Rental.INVENTORY_ID)))
@@ -127,7 +127,7 @@ public class RentalRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.CustomerRecord fetchCustomer() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.CustomerRecord fetchCustomer() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER)
.where(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Rental.CUSTOMER_ID)))
@@ -180,7 +180,7 @@ public class RentalRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.StaffRecord fetchStaff() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.StaffRecord fetchStaff() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Staff.STAFF)
.where(org.jooq.examples.mysql.sakila.tables.Staff.STAFF_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Rental.STAFF_ID)))
@@ -207,14 +207,4 @@ public class RentalRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = 968990861;
+ private static final long serialVersionUID = 2096646353;
/**
* An uncommented item
@@ -48,14 +48,4 @@ public class SalesByFilmCategoryRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = 1940921837;
+ private static final long serialVersionUID = 1943534958;
/**
* An uncommented item
@@ -62,14 +62,4 @@ public class SalesByStoreRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = 713714667;
+ private static final long serialVersionUID = -1473067299;
/**
* An uncommented item
@@ -132,14 +132,4 @@ public class StaffListRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = 1559655360;
+ private static final long serialVersionUID = 726693657;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class StaffRecord extends org.jooq.impl.UpdatableRecordImpl fetchPaymentList() throws java.sql.SQLException {
+ public java.util.List fetchPaymentList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Payment.PAYMENT)
.where(org.jooq.examples.mysql.sakila.tables.Payment.STAFF_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Staff.STAFF_ID)))
@@ -47,7 +47,7 @@ public class StaffRecord extends org.jooq.impl.UpdatableRecordImpl fetchRentalList() throws java.sql.SQLException {
+ public java.util.List fetchRentalList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Rental.RENTAL)
.where(org.jooq.examples.mysql.sakila.tables.Rental.STAFF_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Staff.STAFF_ID)))
@@ -59,7 +59,7 @@ public class StaffRecord extends org.jooq.impl.UpdatableRecordImpl fetchStoreList() throws java.sql.SQLException {
+ public java.util.List fetchStoreList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Store.STORE)
.where(org.jooq.examples.mysql.sakila.tables.Store.MANAGER_STAFF_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Staff.STAFF_ID)))
@@ -126,7 +126,7 @@ public class StaffRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.AddressRecord fetchAddress() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.AddressRecord fetchAddress() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS)
.where(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Staff.ADDRESS_ID)))
@@ -193,7 +193,7 @@ public class StaffRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.StoreRecord fetchStore() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.StoreRecord fetchStore() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Store.STORE)
.where(org.jooq.examples.mysql.sakila.tables.Store.STORE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Staff.STORE_ID)))
@@ -262,14 +262,4 @@ public class StaffRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -1869857559;
+ private static final long serialVersionUID = -939882018;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class StoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchCustomerList() throws java.sql.SQLException {
+ public java.util.List fetchCustomerList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Customer.CUSTOMER)
.where(org.jooq.examples.mysql.sakila.tables.Customer.STORE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Store.STORE_ID)))
@@ -47,7 +47,7 @@ public class StoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchInventoryList() throws java.sql.SQLException {
+ public java.util.List fetchInventoryList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Inventory.INVENTORY)
.where(org.jooq.examples.mysql.sakila.tables.Inventory.STORE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Store.STORE_ID)))
@@ -59,7 +59,7 @@ public class StoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchStaffList() throws java.sql.SQLException {
+ public java.util.List fetchStaffList() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Staff.STAFF)
.where(org.jooq.examples.mysql.sakila.tables.Staff.STORE_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Store.STORE_ID)))
@@ -98,7 +98,7 @@ public class StoreRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.StaffRecord fetchStaff() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.StaffRecord fetchStaff() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Staff.STAFF)
.where(org.jooq.examples.mysql.sakila.tables.Staff.STAFF_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Store.MANAGER_STAFF_ID)))
@@ -137,7 +137,7 @@ public class StoreRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.examples.mysql.sakila.tables.records.AddressRecord fetchAddress() throws java.sql.SQLException {
+ public org.jooq.examples.mysql.sakila.tables.records.AddressRecord fetchAddress() {
return create()
.selectFrom(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS)
.where(org.jooq.examples.mysql.sakila.tables.Address.ADDRESS_ID.equal(getValue(org.jooq.examples.mysql.sakila.tables.Store.ADDRESS_ID)))
@@ -164,14 +164,4 @@ public class StoreRecord extends org.jooq.impl.UpdatableRecordImpl planCur, java.lang.Integer iFormatFlags) throws java.sql.SQLException {
+ public static java.lang.Object prepareRecords(org.jooq.Configuration configuration, org.jooq.Result planCur, java.lang.Integer iFormatFlags) {
org.jooq.examples.oracle.sys.packages.dbms_xplan.PrepareRecords f = new org.jooq.examples.oracle.sys.packages.dbms_xplan.PrepareRecords();
f.setPlanCur(planCur);
f.setIFormatFlags(iFormatFlags);
@@ -289,8 +294,9 @@ public final class DbmsXplan extends org.jooq.impl.PackageImpl {
* @param hasplanstats IN parameter
* @param format IN parameter
* @param formatFlags OUT parameter
+ * @throws org.jooq.exception.DataAccessException if something went wrong executing the query
*/
- public static java.lang.Integer validateFormat(org.jooq.Configuration configuration, java.lang.Object hasplanstats, java.lang.String format) throws java.sql.SQLException {
+ public static java.lang.Integer validateFormat(org.jooq.Configuration configuration, java.lang.Object hasplanstats, java.lang.String format) {
org.jooq.examples.oracle.sys.packages.dbms_xplan.ValidateFormat p = new org.jooq.examples.oracle.sys.packages.dbms_xplan.ValidateFormat();
p.setHasplanstats(hasplanstats);
p.setFormat(format);
diff --git a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/Display.java b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/Display.java
index 6eb9167a0e..1e154d7845 100644
--- a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/Display.java
+++ b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/Display.java
@@ -6,11 +6,11 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Display extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = -1305056796;
+ private static final long serialVersionUID = -999589679;
/**
diff --git a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayAwr.java b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayAwr.java
index 283e546da9..7aeaf3c72e 100644
--- a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayAwr.java
+++ b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayAwr.java
@@ -6,11 +6,11 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class DisplayAwr extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = -1055688121;
+ private static final long serialVersionUID = 739640116;
/**
diff --git a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayCursor.java b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayCursor.java
index b0f4be8065..d91a900319 100644
--- a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayCursor.java
+++ b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplayCursor.java
@@ -6,11 +6,11 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class DisplayCursor extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = 2140765171;
+ private static final long serialVersionUID = 853080870;
/**
diff --git a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplaySqlset.java b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplaySqlset.java
index 2c02b3985a..2a6f114b28 100644
--- a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplaySqlset.java
+++ b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/DisplaySqlset.java
@@ -6,11 +6,11 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class DisplaySqlset extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = -16201610;
+ private static final long serialVersionUID = 1932059683;
/**
diff --git a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/PrepareRecords.java b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/PrepareRecords.java
index 4de70a805a..5d3c415a88 100644
--- a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/PrepareRecords.java
+++ b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/PrepareRecords.java
@@ -6,11 +6,11 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class PrepareRecords extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = 1769968251;
+ private static final long serialVersionUID = 364672430;
/**
diff --git a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/ValidateFormat.java b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/ValidateFormat.java
index 801b8e4638..33dc3d52c7 100644
--- a/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/ValidateFormat.java
+++ b/jOOQ-test/examples/org/jooq/examples/oracle/sys/packages/dbms_xplan/ValidateFormat.java
@@ -6,11 +6,11 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class ValidateFormat extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = -705065709;
+ private static final long serialVersionUID = 2063001862;
/**
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Dbo.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Dbo.java
index 0e1daaa9b6..ce7bf943e3 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Dbo.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Dbo.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class Dbo extends org.jooq.impl.SchemaImpl {
- private static final long serialVersionUID = 984213874;
+ private static final long serialVersionUID = -783524129;
/**
* The singleton instance of dbo
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/DboFactory.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/DboFactory.java
index 52c45b3009..290c14a9aa 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/DboFactory.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/DboFactory.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class DboFactory extends org.jooq.util.ase.ASEFactory {
- private static final long serialVersionUID = -898776501;
+ private static final long serialVersionUID = 724659326;
/**
* Create a factory with a connection
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Keys.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Keys.java
index de14d92319..91c501ad66 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Keys.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/Keys.java
@@ -8,7 +8,7 @@ package org.jooq.test.ase.generatedclasses;
*
* A class modelling foreign key relationships between tables of the dbo schema
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
@SuppressWarnings({"unchecked"})
public class Keys extends org.jooq.impl.AbstractKeys {
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/TLanguage.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/TLanguage.java
index b555827644..fd8fabd179 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/TLanguage.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/TLanguage.java
@@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public enum TLanguage implements org.jooq.MasterDataType {
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_11.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_11.java
index 40d56f7508..f8a1bdc75a 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_11.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_11.java
@@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public enum T_658_11 implements org.jooq.MasterDataType {
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_12.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_12.java
index 2e16ae6926..cafd1eba54 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_12.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_12.java
@@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public enum T_658_12 implements org.jooq.MasterDataType {
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_21.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_21.java
index f6b887ede9..d7a9dfdd69 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_21.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_21.java
@@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public enum T_658_21 implements org.jooq.MasterDataType {
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_22.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_22.java
index 349bd74c63..426b77884e 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_22.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_22.java
@@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public enum T_658_22 implements org.jooq.MasterDataType {
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_31.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_31.java
index 9fee9a632a..2fa750cde1 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_31.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_31.java
@@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public enum T_658_31 implements org.jooq.MasterDataType {
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_32.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_32.java
index 921bf8f7e5..6a14473b88 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_32.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/enums/T_658_32.java
@@ -6,7 +6,7 @@ package org.jooq.test.ase.generatedclasses.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public enum T_658_32 implements org.jooq.MasterDataType {
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TAuthor.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TAuthor.java
index b0fd651b88..af9aab91fe 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TAuthor.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TAuthor.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class TAuthor extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1431761343;
+ private static final long serialVersionUID = -586561998;
/**
* The singleton instance of t_author
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBook.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBook.java
index 46a04b6b9d..6ba7a50efd 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBook.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBook.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class TBook extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -790088763;
+ private static final long serialVersionUID = 1007751288;
/**
* The singleton instance of t_book
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookStore.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookStore.java
index 0bdf186f5e..3c5829cec2 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookStore.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookStore.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class TBookStore extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -134686241;
+ private static final long serialVersionUID = 835317324;
/**
* The singleton instance of t_book_store
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookToBookStore.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookToBookStore.java
index 96d4d1a090..507ef929d1 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookToBookStore.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TBookToBookStore.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 2012394703;
+ private static final long serialVersionUID = 64296578;
/**
* The singleton instance of t_book_to_book_store
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TTriggers.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TTriggers.java
index dbaf4100f0..079a379f08 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TTriggers.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/TTriggers.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class TTriggers extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -226452639;
+ private static final long serialVersionUID = 542749396;
/**
* The singleton instance of t_triggers
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_639NumbersTable.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_639NumbersTable.java
index d2a474ce59..2a65190d9f 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_639NumbersTable.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_639NumbersTable.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -2119293315;
+ private static final long serialVersionUID = 262393392;
/**
* The singleton instance of t_639_numbers_table
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_658Ref.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_658Ref.java
index d621501fe5..ff1dad5e66 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_658Ref.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_658Ref.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class T_658Ref extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -1685085118;
+ private static final long serialVersionUID = 271279215;
/**
* The singleton instance of t_658_ref
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_725LobTest.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_725LobTest.java
index 6334d7f757..96a63a4ac2 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_725LobTest.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_725LobTest.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -19961899;
+ private static final long serialVersionUID = 282887496;
/**
* The singleton instance of t_725_lob_test
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_785.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_785.java
index afe6ea540d..d3ec171032 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_785.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/T_785.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class T_785 extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 538952859;
+ private static final long serialVersionUID = 474462286;
/**
* The singleton instance of t_785
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VAuthor.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VAuthor.java
index d81fb4d1aa..bc5893714b 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VAuthor.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VAuthor.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class VAuthor extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 597389800;
+ private static final long serialVersionUID = 1867805717;
/**
* The singleton instance of v_author
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VBook.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VBook.java
index f54f6727ef..19b1222395 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VBook.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VBook.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class VBook extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -1528306178;
+ private static final long serialVersionUID = -1849175253;
/**
* The singleton instance of v_book
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VLibrary.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VLibrary.java
index 6f76469ef6..4f8cba1a26 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VLibrary.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/VLibrary.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class VLibrary extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 440365303;
+ private static final long serialVersionUID = -1614123228;
/**
* The singleton instance of v_library
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_64_69.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_64_69.java
index be8eec8306..f1959dc686 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_64_69.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_64_69.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -1363596992;
+ private static final long serialVersionUID = -1920642573;
/**
* The singleton instance of x_test_case_64_69
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_71.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_71.java
index fe871f141e..60640e634e 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_71.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_71.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 1817156216;
+ private static final long serialVersionUID = 2092499813;
/**
* The singleton instance of x_test_case_71
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_85.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_85.java
index f9ff14e580..67def017c2 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_85.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XTestCase_85.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = -1616695788;
+ private static final long serialVersionUID = 384427201;
/**
* The singleton instance of x_test_case_85
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XUnused.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XUnused.java
index 3b1cf79e12..c24597191a 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XUnused.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/XUnused.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class XUnused extends org.jooq.impl.UpdatableTableImpl {
- private static final long serialVersionUID = 2092363524;
+ private static final long serialVersionUID = -991931017;
/**
* The singleton instance of x_unused
diff --git a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/records/TAuthorRecord.java b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/records/TAuthorRecord.java
index b199923195..e573d1f9bc 100644
--- a/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/records/TAuthorRecord.java
+++ b/jOOQ-test/src/org/jooq/test/ase/generatedclasses/tables/records/TAuthorRecord.java
@@ -6,11 +6,11 @@ package org.jooq.test.ase.generatedclasses.tables.records;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = {"http://www.jooq.org", "1.6.8"},
+@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
comments = "This class is generated by jOOQ")
public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -841597885;
+ private static final long serialVersionUID = 1977373217;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByAuthorId() throws java.sql.SQLException {
+ public java.util.List fetchTBookListByAuthorId() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.TBook.T_BOOK)
.where(org.jooq.test.ase.generatedclasses.tables.TBook.AUTHOR_ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TAuthor.ID)))
@@ -47,7 +47,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookListByCoAuthorId() throws java.sql.SQLException {
+ public java.util.List fetchTBookListByCoAuthorId() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.TBook.T_BOOK)
.where(org.jooq.test.ase.generatedclasses.tables.TBook.CO_AUTHOR_ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TAuthor.ID)))
@@ -130,14 +130,4 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = 1196650315;
+ private static final long serialVersionUID = -958711287;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException {
+ public java.util.List fetchTBookToBookStoreList() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE)
.where(org.jooq.test.ase.generatedclasses.tables.TBookToBookStore.BOOK_ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TBook.ID)))
@@ -74,7 +74,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.test.ase.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() throws java.sql.SQLException {
+ public org.jooq.test.ase.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByAuthorId() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.TAuthor.T_AUTHOR)
.where(org.jooq.test.ase.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TBook.AUTHOR_ID)))
@@ -113,7 +113,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.test.ase.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() throws java.sql.SQLException {
+ public org.jooq.test.ase.generatedclasses.tables.records.TAuthorRecord fetchTAuthorByCoAuthorId() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.TAuthor.T_AUTHOR)
.where(org.jooq.test.ase.generatedclasses.tables.TAuthor.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TBook.CO_AUTHOR_ID)))
@@ -220,14 +220,4 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -315081137;
+ private static final long serialVersionUID = -924554616;
/**
* An uncommented item
@@ -43,7 +43,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl fetchTBookToBookStoreList() throws java.sql.SQLException {
+ public java.util.List fetchTBookToBookStoreList() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE)
.where(org.jooq.test.ase.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TBookStore.NAME)))
@@ -56,14 +56,4 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -1458035344;
+ private static final long serialVersionUID = 447470193;
/**
* An uncommented item
@@ -50,7 +50,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.test.ase.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() throws java.sql.SQLException {
+ public org.jooq.test.ase.generatedclasses.tables.records.TBookStoreRecord fetchTBookStore() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.TBookStore.T_BOOK_STORE)
.where(org.jooq.test.ase.generatedclasses.tables.TBookStore.NAME.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TBookToBookStore.BOOK_STORE_NAME)))
@@ -95,7 +95,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.test.ase.generatedclasses.tables.records.TBookRecord fetchTBook() throws java.sql.SQLException {
+ public org.jooq.test.ase.generatedclasses.tables.records.TBookRecord fetchTBook() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.TBook.T_BOOK)
.where(org.jooq.test.ase.generatedclasses.tables.TBook.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.TBookToBookStore.BOOK_ID)))
@@ -122,14 +122,4 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -460620652;
+ private static final long serialVersionUID = -528899752;
/**
* An uncommented item
@@ -64,14 +64,4 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -1573635226;
+ private static final long serialVersionUID = 589976175;
/**
* An uncommented item
@@ -204,14 +204,4 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -435743702;
+ private static final long serialVersionUID = 674679586;
/**
* An uncommented item
@@ -162,14 +162,4 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = 1682670470;
+ private static final long serialVersionUID = 1919452991;
/**
* An uncommented item
@@ -50,14 +50,4 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -1165079988;
+ private static final long serialVersionUID = -1832116849;
/**
* An uncommented item
@@ -60,14 +60,4 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = 1732360898;
+ private static final long serialVersionUID = 611987614;
/**
* An uncommented item
@@ -102,14 +102,4 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = 1085484544;
+ private static final long serialVersionUID = 85232096;
/**
* An uncommented item
@@ -144,14 +144,4 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = -1392330862;
+ private static final long serialVersionUID = 706781914;
/**
* An uncommented item
@@ -46,14 +46,4 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl {
- private static final long serialVersionUID = -228178225;
+ private static final long serialVersionUID = -202308626;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_71List() throws java.sql.SQLException {
+ public java.util.List fetchXTestCase_71List() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.XTestCase_71.X_TEST_CASE_71)
.where(org.jooq.test.ase.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XTestCase_64_69.ID)))
@@ -74,7 +74,7 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.test.ase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException {
+ public org.jooq.test.ase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.XUnused.X_UNUSED)
.where(org.jooq.test.ase.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XTestCase_64_69.UNUSED_ID)))
@@ -87,14 +87,4 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -187245894;
+ private static final long serialVersionUID = 381962349;
/**
* An uncommented item
@@ -62,7 +62,7 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.test.ase.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() throws java.sql.SQLException {
+ public org.jooq.test.ase.generatedclasses.tables.records.XTestCase_64_69Record fetchXTestCase_64_69() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69)
.where(org.jooq.test.ase.generatedclasses.tables.XTestCase_64_69.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XTestCase_71.TEST_CASE_64_69_ID)))
@@ -75,14 +75,4 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = 2021371511;
+ private static final long serialVersionUID = 178315414;
/**
* An uncommented item
@@ -62,7 +62,7 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.test.ase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException {
+ public org.jooq.test.ase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.XUnused.X_UNUSED)
.where(org.jooq.test.ase.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XTestCase_85.X_UNUSED_ID)))
@@ -100,14 +100,4 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl {
- private static final long serialVersionUID = -1089598162;
+ private static final long serialVersionUID = -1328591388;
/**
* An uncommented item
@@ -35,7 +35,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXUnusedList() throws java.sql.SQLException {
+ public java.util.List fetchXUnusedList() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.XUnused.X_UNUSED)
.where(org.jooq.test.ase.generatedclasses.tables.XUnused.ID_REF.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XUnused.ID)))
@@ -48,7 +48,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_85List() throws java.sql.SQLException {
+ public java.util.List fetchXTestCase_85List() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85)
.where(org.jooq.test.ase.generatedclasses.tables.XTestCase_85.X_UNUSED_ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XUnused.ID)))
@@ -61,7 +61,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl fetchXTestCase_64_69List() throws java.sql.SQLException {
+ public java.util.List fetchXTestCase_64_69List() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.XTestCase_64_69.X_TEST_CASE_64_69)
.where(org.jooq.test.ase.generatedclasses.tables.XTestCase_64_69.UNUSED_ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XUnused.ID)))
@@ -132,7 +132,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl
*/
- public org.jooq.test.ase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() throws java.sql.SQLException {
+ public org.jooq.test.ase.generatedclasses.tables.records.XUnusedRecord fetchXUnused() {
return create()
.selectFrom(org.jooq.test.ase.generatedclasses.tables.XUnused.X_UNUSED)
.where(org.jooq.test.ase.generatedclasses.tables.XUnused.ID.equal(getValue(org.jooq.test.ase.generatedclasses.tables.XUnused.ID_REF)))
@@ -316,14 +316,4 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl