diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/InformationSchema.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/InformationSchema.java
index b44279e4ad..5f131522e5 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/InformationSchema.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/InformationSchema.java
@@ -6,12 +6,12 @@ package org.jooq.util.mysql.information_schema;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class InformationSchema extends org.jooq.impl.SchemaImpl {
- private static final long serialVersionUID = 329369714;
+ private static final long serialVersionUID = -1729234384;
/**
* The singleton instance of information_schema
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/Tables.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/Tables.java
index 9c1794e87b..361a54dd5c 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/Tables.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/Tables.java
@@ -8,7 +8,7 @@ package org.jooq.util.mysql.information_schema;
*
* Convenience access to all tables in information_schema
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Tables {
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Columns.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Columns.java
index 4a01038dbb..01156c9d95 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Columns.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Columns.java
@@ -6,12 +6,12 @@ package org.jooq.util.mysql.information_schema.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Columns extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -2094152338;
+ private static final long serialVersionUID = 1277362921;
/**
* The singleton instance of information_schema.COLUMNS
@@ -29,27 +29,27 @@ public class Columns extends org.jooq.impl.TableImpl {
/**
* The column information_schema.COLUMNS.TABLE_CATALOG.
*/
- public static final org.jooq.TableField TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), COLUMNS);
+ public static final org.jooq.TableField TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), COLUMNS);
/**
* The column information_schema.COLUMNS.TABLE_SCHEMA.
*/
- public static final org.jooq.TableField TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), COLUMNS);
+ public static final org.jooq.TableField TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), COLUMNS);
/**
* The column information_schema.COLUMNS.TABLE_NAME.
*/
- public static final org.jooq.TableField TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), COLUMNS);
+ public static final org.jooq.TableField TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), COLUMNS);
/**
* The column information_schema.COLUMNS.COLUMN_NAME.
*/
- public static final org.jooq.TableField COLUMN_NAME = createField("COLUMN_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), COLUMNS);
+ public static final org.jooq.TableField COLUMN_NAME = createField("COLUMN_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), COLUMNS);
/**
* The column information_schema.COLUMNS.ORDINAL_POSITION.
*/
- public static final org.jooq.TableField ORDINAL_POSITION = createField("ORDINAL_POSITION", org.jooq.impl.SQLDataType.BIGINTUNSIGNED, COLUMNS);
+ public static final org.jooq.TableField ORDINAL_POSITION = createField("ORDINAL_POSITION", org.jooq.impl.SQLDataType.BIGINTUNSIGNED.nullable(false).defaulted(true), COLUMNS);
/**
* The column information_schema.COLUMNS.COLUMN_DEFAULT.
@@ -59,12 +59,12 @@ public class Columns extends org.jooq.impl.TableImpl {
/**
* The column information_schema.COLUMNS.IS_NULLABLE.
*/
- public static final org.jooq.TableField IS_NULLABLE = createField("IS_NULLABLE", org.jooq.impl.SQLDataType.VARCHAR.length(3), COLUMNS);
+ public static final org.jooq.TableField IS_NULLABLE = createField("IS_NULLABLE", org.jooq.impl.SQLDataType.VARCHAR.length(3).nullable(false).defaulted(true), COLUMNS);
/**
* The column information_schema.COLUMNS.DATA_TYPE.
*/
- public static final org.jooq.TableField DATA_TYPE = createField("DATA_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64), COLUMNS);
+ public static final org.jooq.TableField DATA_TYPE = createField("DATA_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), COLUMNS);
/**
* The column information_schema.COLUMNS.CHARACTER_MAXIMUM_LENGTH.
@@ -99,27 +99,27 @@ public class Columns extends org.jooq.impl.TableImpl {
/**
* The column information_schema.COLUMNS.COLUMN_TYPE.
*/
- public static final org.jooq.TableField COLUMN_TYPE = createField("COLUMN_TYPE", org.jooq.impl.SQLDataType.CLOB, COLUMNS);
+ public static final org.jooq.TableField COLUMN_TYPE = createField("COLUMN_TYPE", org.jooq.impl.SQLDataType.CLOB.nullable(false), COLUMNS);
/**
* The column information_schema.COLUMNS.COLUMN_KEY.
*/
- public static final org.jooq.TableField COLUMN_KEY = createField("COLUMN_KEY", org.jooq.impl.SQLDataType.VARCHAR.length(3), COLUMNS);
+ public static final org.jooq.TableField COLUMN_KEY = createField("COLUMN_KEY", org.jooq.impl.SQLDataType.VARCHAR.length(3).nullable(false).defaulted(true), COLUMNS);
/**
* The column information_schema.COLUMNS.EXTRA.
*/
- public static final org.jooq.TableField EXTRA = createField("EXTRA", org.jooq.impl.SQLDataType.VARCHAR.length(27), COLUMNS);
+ public static final org.jooq.TableField EXTRA = createField("EXTRA", org.jooq.impl.SQLDataType.VARCHAR.length(27).nullable(false).defaulted(true), COLUMNS);
/**
* The column information_schema.COLUMNS.PRIVILEGES.
*/
- public static final org.jooq.TableField PRIVILEGES = createField("PRIVILEGES", org.jooq.impl.SQLDataType.VARCHAR.length(80), COLUMNS);
+ public static final org.jooq.TableField PRIVILEGES = createField("PRIVILEGES", org.jooq.impl.SQLDataType.VARCHAR.length(80).nullable(false).defaulted(true), COLUMNS);
/**
* The column information_schema.COLUMNS.COLUMN_COMMENT.
*/
- public static final org.jooq.TableField COLUMN_COMMENT = createField("COLUMN_COMMENT", org.jooq.impl.SQLDataType.VARCHAR.length(1024), COLUMNS);
+ public static final org.jooq.TableField COLUMN_COMMENT = createField("COLUMN_COMMENT", org.jooq.impl.SQLDataType.VARCHAR.length(1024).nullable(false).defaulted(true), COLUMNS);
/**
* No further instances allowed
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/KeyColumnUsage.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/KeyColumnUsage.java
index a7a05e95bf..708d072a50 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/KeyColumnUsage.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/KeyColumnUsage.java
@@ -6,12 +6,12 @@ package org.jooq.util.mysql.information_schema.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class KeyColumnUsage extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 740257576;
+ private static final long serialVersionUID = 730855986;
/**
* The singleton instance of information_schema.KEY_COLUMN_USAGE
@@ -29,42 +29,42 @@ public class KeyColumnUsage extends org.jooq.impl.TableImpl {
/**
* The column information_schema.KEY_COLUMN_USAGE.CONSTRAINT_CATALOG.
*/
- public static final org.jooq.TableField CONSTRAINT_CATALOG = createField("CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), KEY_COLUMN_USAGE);
+ public static final org.jooq.TableField CONSTRAINT_CATALOG = createField("CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
/**
* The column information_schema.KEY_COLUMN_USAGE.CONSTRAINT_SCHEMA.
*/
- public static final org.jooq.TableField CONSTRAINT_SCHEMA = createField("CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), KEY_COLUMN_USAGE);
+ public static final org.jooq.TableField CONSTRAINT_SCHEMA = createField("CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
/**
* The column information_schema.KEY_COLUMN_USAGE.CONSTRAINT_NAME.
*/
- public static final org.jooq.TableField CONSTRAINT_NAME = createField("CONSTRAINT_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), KEY_COLUMN_USAGE);
+ public static final org.jooq.TableField CONSTRAINT_NAME = createField("CONSTRAINT_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
/**
* The column information_schema.KEY_COLUMN_USAGE.TABLE_CATALOG.
*/
- public static final org.jooq.TableField TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), KEY_COLUMN_USAGE);
+ public static final org.jooq.TableField TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
/**
* The column information_schema.KEY_COLUMN_USAGE.TABLE_SCHEMA.
*/
- public static final org.jooq.TableField TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), KEY_COLUMN_USAGE);
+ public static final org.jooq.TableField TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
/**
* The column information_schema.KEY_COLUMN_USAGE.TABLE_NAME.
*/
- public static final org.jooq.TableField TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), KEY_COLUMN_USAGE);
+ public static final org.jooq.TableField TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
/**
* The column information_schema.KEY_COLUMN_USAGE.COLUMN_NAME.
*/
- public static final org.jooq.TableField COLUMN_NAME = createField("COLUMN_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), KEY_COLUMN_USAGE);
+ public static final org.jooq.TableField COLUMN_NAME = createField("COLUMN_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
/**
* The column information_schema.KEY_COLUMN_USAGE.ORDINAL_POSITION.
*/
- public static final org.jooq.TableField ORDINAL_POSITION = createField("ORDINAL_POSITION", org.jooq.impl.SQLDataType.BIGINT, KEY_COLUMN_USAGE);
+ public static final org.jooq.TableField ORDINAL_POSITION = createField("ORDINAL_POSITION", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), KEY_COLUMN_USAGE);
/**
* The column information_schema.KEY_COLUMN_USAGE.POSITION_IN_UNIQUE_CONSTRAINT.
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Parameters.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Parameters.java
index 749f2e2562..043c9607ec 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Parameters.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Parameters.java
@@ -6,12 +6,12 @@ package org.jooq.util.mysql.information_schema.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Parameters extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 980337494;
+ private static final long serialVersionUID = 1748825549;
/**
* The singleton instance of information_schema.PARAMETERS
@@ -29,22 +29,22 @@ public class Parameters extends org.jooq.impl.TableImpl {
/**
* The column information_schema.PARAMETERS.SPECIFIC_CATALOG.
*/
- public static final org.jooq.TableField SPECIFIC_CATALOG = createField("SPECIFIC_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), PARAMETERS);
+ public static final org.jooq.TableField SPECIFIC_CATALOG = createField("SPECIFIC_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), PARAMETERS);
/**
* The column information_schema.PARAMETERS.SPECIFIC_SCHEMA.
*/
- public static final org.jooq.TableField SPECIFIC_SCHEMA = createField("SPECIFIC_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), PARAMETERS);
+ public static final org.jooq.TableField SPECIFIC_SCHEMA = createField("SPECIFIC_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), PARAMETERS);
/**
* The column information_schema.PARAMETERS.SPECIFIC_NAME.
*/
- public static final org.jooq.TableField SPECIFIC_NAME = createField("SPECIFIC_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), PARAMETERS);
+ public static final org.jooq.TableField SPECIFIC_NAME = createField("SPECIFIC_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), PARAMETERS);
/**
* The column information_schema.PARAMETERS.ORDINAL_POSITION.
*/
- public static final org.jooq.TableField ORDINAL_POSITION = createField("ORDINAL_POSITION", org.jooq.impl.SQLDataType.INTEGER, PARAMETERS);
+ public static final org.jooq.TableField ORDINAL_POSITION = createField("ORDINAL_POSITION", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), PARAMETERS);
/**
* The column information_schema.PARAMETERS.PARAMETER_MODE.
@@ -59,7 +59,7 @@ public class Parameters extends org.jooq.impl.TableImpl {
/**
* The column information_schema.PARAMETERS.DATA_TYPE.
*/
- public static final org.jooq.TableField DATA_TYPE = createField("DATA_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64), PARAMETERS);
+ public static final org.jooq.TableField DATA_TYPE = createField("DATA_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), PARAMETERS);
/**
* The column information_schema.PARAMETERS.CHARACTER_MAXIMUM_LENGTH.
@@ -94,12 +94,12 @@ public class Parameters extends org.jooq.impl.TableImpl {
/**
* The column information_schema.PARAMETERS.DTD_IDENTIFIER.
*/
- public static final org.jooq.TableField DTD_IDENTIFIER = createField("DTD_IDENTIFIER", org.jooq.impl.SQLDataType.CLOB, PARAMETERS);
+ public static final org.jooq.TableField DTD_IDENTIFIER = createField("DTD_IDENTIFIER", org.jooq.impl.SQLDataType.CLOB.nullable(false), PARAMETERS);
/**
* The column information_schema.PARAMETERS.ROUTINE_TYPE.
*/
- public static final org.jooq.TableField ROUTINE_TYPE = createField("ROUTINE_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(9), PARAMETERS);
+ public static final org.jooq.TableField ROUTINE_TYPE = createField("ROUTINE_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(9).nullable(false).defaulted(true), PARAMETERS);
/**
* No further instances allowed
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/ReferentialConstraints.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/ReferentialConstraints.java
index f26250cf73..962b8d70f1 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/ReferentialConstraints.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/ReferentialConstraints.java
@@ -6,12 +6,12 @@ package org.jooq.util.mysql.information_schema.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class ReferentialConstraints extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -331110683;
+ private static final long serialVersionUID = -718267817;
/**
* The singleton instance of information_schema.REFERENTIAL_CONSTRAINTS
@@ -29,27 +29,27 @@ public class ReferentialConstraints extends org.jooq.impl.TableImplinformation_schema.REFERENTIAL_CONSTRAINTS.CONSTRAINT_CATALOG.
*/
- public static final org.jooq.TableField CONSTRAINT_CATALOG = createField("CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), REFERENTIAL_CONSTRAINTS);
+ public static final org.jooq.TableField CONSTRAINT_CATALOG = createField("CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
/**
* The column information_schema.REFERENTIAL_CONSTRAINTS.CONSTRAINT_SCHEMA.
*/
- public static final org.jooq.TableField CONSTRAINT_SCHEMA = createField("CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
+ public static final org.jooq.TableField CONSTRAINT_SCHEMA = createField("CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
/**
* The column information_schema.REFERENTIAL_CONSTRAINTS.CONSTRAINT_NAME.
*/
- public static final org.jooq.TableField CONSTRAINT_NAME = createField("CONSTRAINT_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
+ public static final org.jooq.TableField CONSTRAINT_NAME = createField("CONSTRAINT_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
/**
* The column information_schema.REFERENTIAL_CONSTRAINTS.UNIQUE_CONSTRAINT_CATALOG.
*/
- public static final org.jooq.TableField UNIQUE_CONSTRAINT_CATALOG = createField("UNIQUE_CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), REFERENTIAL_CONSTRAINTS);
+ public static final org.jooq.TableField UNIQUE_CONSTRAINT_CATALOG = createField("UNIQUE_CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
/**
* The column information_schema.REFERENTIAL_CONSTRAINTS.UNIQUE_CONSTRAINT_SCHEMA.
*/
- public static final org.jooq.TableField UNIQUE_CONSTRAINT_SCHEMA = createField("UNIQUE_CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
+ public static final org.jooq.TableField UNIQUE_CONSTRAINT_SCHEMA = createField("UNIQUE_CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
/**
* The column information_schema.REFERENTIAL_CONSTRAINTS.UNIQUE_CONSTRAINT_NAME.
@@ -59,27 +59,27 @@ public class ReferentialConstraints extends org.jooq.impl.TableImplinformation_schema.REFERENTIAL_CONSTRAINTS.MATCH_OPTION.
*/
- public static final org.jooq.TableField MATCH_OPTION = createField("MATCH_OPTION", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
+ public static final org.jooq.TableField MATCH_OPTION = createField("MATCH_OPTION", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
/**
* The column information_schema.REFERENTIAL_CONSTRAINTS.UPDATE_RULE.
*/
- public static final org.jooq.TableField UPDATE_RULE = createField("UPDATE_RULE", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
+ public static final org.jooq.TableField UPDATE_RULE = createField("UPDATE_RULE", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
/**
* The column information_schema.REFERENTIAL_CONSTRAINTS.DELETE_RULE.
*/
- public static final org.jooq.TableField DELETE_RULE = createField("DELETE_RULE", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
+ public static final org.jooq.TableField DELETE_RULE = createField("DELETE_RULE", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
/**
* The column information_schema.REFERENTIAL_CONSTRAINTS.TABLE_NAME.
*/
- public static final org.jooq.TableField TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
+ public static final org.jooq.TableField TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
/**
* The column information_schema.REFERENTIAL_CONSTRAINTS.REFERENCED_TABLE_NAME.
*/
- public static final org.jooq.TableField REFERENCED_TABLE_NAME = createField("REFERENCED_TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
+ public static final org.jooq.TableField REFERENCED_TABLE_NAME = createField("REFERENCED_TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
/**
* No further instances allowed
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Schemata.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Schemata.java
index 6eacb02bbb..6f5e631b6a 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Schemata.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Schemata.java
@@ -6,12 +6,12 @@ package org.jooq.util.mysql.information_schema.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Schemata extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 1392430307;
+ private static final long serialVersionUID = 1888132957;
/**
* The singleton instance of information_schema.SCHEMATA
@@ -29,22 +29,22 @@ public class Schemata extends org.jooq.impl.TableImpl {
/**
* The column information_schema.SCHEMATA.CATALOG_NAME.
*/
- public static final org.jooq.TableField CATALOG_NAME = createField("CATALOG_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(512), SCHEMATA);
+ public static final org.jooq.TableField CATALOG_NAME = createField("CATALOG_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), SCHEMATA);
/**
* The column information_schema.SCHEMATA.SCHEMA_NAME.
*/
- public static final org.jooq.TableField SCHEMA_NAME = createField("SCHEMA_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), SCHEMATA);
+ public static final org.jooq.TableField SCHEMA_NAME = createField("SCHEMA_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), SCHEMATA);
/**
* The column information_schema.SCHEMATA.DEFAULT_CHARACTER_SET_NAME.
*/
- public static final org.jooq.TableField DEFAULT_CHARACTER_SET_NAME = createField("DEFAULT_CHARACTER_SET_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(32), SCHEMATA);
+ public static final org.jooq.TableField DEFAULT_CHARACTER_SET_NAME = createField("DEFAULT_CHARACTER_SET_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(32).nullable(false).defaulted(true), SCHEMATA);
/**
* The column information_schema.SCHEMATA.DEFAULT_COLLATION_NAME.
*/
- public static final org.jooq.TableField DEFAULT_COLLATION_NAME = createField("DEFAULT_COLLATION_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(32), SCHEMATA);
+ public static final org.jooq.TableField DEFAULT_COLLATION_NAME = createField("DEFAULT_COLLATION_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(32).nullable(false).defaulted(true), SCHEMATA);
/**
* The column information_schema.SCHEMATA.SQL_PATH.
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/TableConstraints.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/TableConstraints.java
index 839c28767b..9d10cf5f5c 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/TableConstraints.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/TableConstraints.java
@@ -6,12 +6,12 @@ package org.jooq.util.mysql.information_schema.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class TableConstraints extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = 509219639;
+ private static final long serialVersionUID = -1097051599;
/**
* The singleton instance of information_schema.TABLE_CONSTRAINTS
@@ -29,32 +29,32 @@ public class TableConstraints extends org.jooq.impl.TableImpl {
/**
* The column information_schema.TABLE_CONSTRAINTS.CONSTRAINT_CATALOG.
*/
- public static final org.jooq.TableField CONSTRAINT_CATALOG = createField("CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), TABLE_CONSTRAINTS);
+ public static final org.jooq.TableField CONSTRAINT_CATALOG = createField("CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), TABLE_CONSTRAINTS);
/**
* The column information_schema.TABLE_CONSTRAINTS.CONSTRAINT_SCHEMA.
*/
- public static final org.jooq.TableField CONSTRAINT_SCHEMA = createField("CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLE_CONSTRAINTS);
+ public static final org.jooq.TableField CONSTRAINT_SCHEMA = createField("CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLE_CONSTRAINTS);
/**
* The column information_schema.TABLE_CONSTRAINTS.CONSTRAINT_NAME.
*/
- public static final org.jooq.TableField CONSTRAINT_NAME = createField("CONSTRAINT_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLE_CONSTRAINTS);
+ public static final org.jooq.TableField CONSTRAINT_NAME = createField("CONSTRAINT_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLE_CONSTRAINTS);
/**
* The column information_schema.TABLE_CONSTRAINTS.TABLE_SCHEMA.
*/
- public static final org.jooq.TableField TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLE_CONSTRAINTS);
+ public static final org.jooq.TableField TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLE_CONSTRAINTS);
/**
* The column information_schema.TABLE_CONSTRAINTS.TABLE_NAME.
*/
- public static final org.jooq.TableField TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLE_CONSTRAINTS);
+ public static final org.jooq.TableField TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLE_CONSTRAINTS);
/**
* The column information_schema.TABLE_CONSTRAINTS.CONSTRAINT_TYPE.
*/
- public static final org.jooq.TableField CONSTRAINT_TYPE = createField("CONSTRAINT_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLE_CONSTRAINTS);
+ public static final org.jooq.TableField CONSTRAINT_TYPE = createField("CONSTRAINT_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLE_CONSTRAINTS);
/**
* No further instances allowed
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Tables.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Tables.java
index d0bea65824..d610fbeb21 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Tables.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/information_schema/tables/Tables.java
@@ -6,12 +6,12 @@ package org.jooq.util.mysql.information_schema.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Tables extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -907476560;
+ private static final long serialVersionUID = -982438782;
/**
* The singleton instance of information_schema.TABLES
@@ -29,22 +29,22 @@ public class Tables extends org.jooq.impl.TableImpl {
/**
* The column information_schema.TABLES.TABLE_CATALOG.
*/
- public static final org.jooq.TableField TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), TABLES);
+ public static final org.jooq.TableField TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), TABLES);
/**
* The column information_schema.TABLES.TABLE_SCHEMA.
*/
- public static final org.jooq.TableField TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLES);
+ public static final org.jooq.TableField TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLES);
/**
* The column information_schema.TABLES.TABLE_NAME.
*/
- public static final org.jooq.TableField TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLES);
+ public static final org.jooq.TableField TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLES);
/**
* The column information_schema.TABLES.TABLE_TYPE.
*/
- public static final org.jooq.TableField TABLE_TYPE = createField("TABLE_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLES);
+ public static final org.jooq.TableField TABLE_TYPE = createField("TABLE_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLES);
/**
* The column information_schema.TABLES.ENGINE.
@@ -129,7 +129,7 @@ public class Tables extends org.jooq.impl.TableImpl {
/**
* The column information_schema.TABLES.TABLE_COMMENT.
*/
- public static final org.jooq.TableField TABLE_COMMENT = createField("TABLE_COMMENT", org.jooq.impl.SQLDataType.VARCHAR.length(2048), TABLES);
+ public static final org.jooq.TableField TABLE_COMMENT = createField("TABLE_COMMENT", org.jooq.impl.SQLDataType.VARCHAR.length(2048).nullable(false).defaulted(true), TABLES);
/**
* No further instances allowed
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/Mysql.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/Mysql.java
index d8ac69af39..9d6b5dc1e6 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/Mysql.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/Mysql.java
@@ -6,12 +6,12 @@ package org.jooq.util.mysql.mysql;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Mysql extends org.jooq.impl.SchemaImpl {
- private static final long serialVersionUID = -490480462;
+ private static final long serialVersionUID = 1411521904;
/**
* The singleton instance of mysql
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/Tables.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/Tables.java
index e56e81ba7c..3aa3368838 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/Tables.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/Tables.java
@@ -8,7 +8,7 @@ package org.jooq.util.mysql.mysql;
*
* Convenience access to all tables in mysql
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Tables {
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcIsDeterministic.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcIsDeterministic.java
index ba6c23512c..eefaab4361 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcIsDeterministic.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcIsDeterministic.java
@@ -6,16 +6,14 @@ package org.jooq.util.mysql.mysql.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public enum ProcIsDeterministic implements org.jooq.EnumType {
YES("YES"),
- NO("NO"),
-
- ;
+ NO("NO");
private final java.lang.String literal;
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcLanguage.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcLanguage.java
index e54826aca0..5ec11f9f15 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcLanguage.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcLanguage.java
@@ -6,14 +6,12 @@ package org.jooq.util.mysql.mysql.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public enum ProcLanguage implements org.jooq.EnumType {
- SQL("SQL"),
-
- ;
+ SQL("SQL");
private final java.lang.String literal;
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcSecurityType.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcSecurityType.java
index f64a24b1bd..1687561927 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcSecurityType.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcSecurityType.java
@@ -6,16 +6,14 @@ package org.jooq.util.mysql.mysql.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public enum ProcSecurityType implements org.jooq.EnumType {
INVOKER("INVOKER"),
- DEFINER("DEFINER"),
-
- ;
+ DEFINER("DEFINER");
private final java.lang.String literal;
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcSqlDataAccess.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcSqlDataAccess.java
index 7359cc1e64..ab840bddfc 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcSqlDataAccess.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcSqlDataAccess.java
@@ -6,7 +6,7 @@ package org.jooq.util.mysql.mysql.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public enum ProcSqlDataAccess implements org.jooq.EnumType {
@@ -17,9 +17,7 @@ public enum ProcSqlDataAccess implements org.jooq.EnumType {
READS_SQL_DATA("READS_SQL_DATA"),
- MODIFIES_SQL_DATA("MODIFIES_SQL_DATA"),
-
- ;
+ MODIFIES_SQL_DATA("MODIFIES_SQL_DATA");
private final java.lang.String literal;
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcType.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcType.java
index 915b0f9515..fabb430e49 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcType.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcType.java
@@ -6,16 +6,14 @@ package org.jooq.util.mysql.mysql.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public enum ProcType implements org.jooq.EnumType {
FUNCTION("FUNCTION"),
- PROCEDURE("PROCEDURE"),
-
- ;
+ PROCEDURE("PROCEDURE");
private final java.lang.String literal;
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcsPrivRoutineType.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcsPrivRoutineType.java
index dff70bcd62..ef015b8a25 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcsPrivRoutineType.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/enums/ProcsPrivRoutineType.java
@@ -6,16 +6,14 @@ package org.jooq.util.mysql.mysql.enums;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public enum ProcsPrivRoutineType implements org.jooq.EnumType {
FUNCTION("FUNCTION"),
- PROCEDURE("PROCEDURE"),
-
- ;
+ PROCEDURE("PROCEDURE");
private final java.lang.String literal;
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/tables/Proc.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/tables/Proc.java
index afb5985955..076cd34aea 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/tables/Proc.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/tables/Proc.java
@@ -8,12 +8,12 @@ package org.jooq.util.mysql.mysql.tables;
*
* Stored Procedures
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Proc extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -1196832187;
+ private static final long serialVersionUID = 684136539;
/**
* The singleton instance of mysql.proc
@@ -31,12 +31,12 @@ public class Proc extends org.jooq.impl.TableImpl {
/**
* The column mysql.proc.db.
*/
- public static final org.jooq.TableField DB = createField("db", org.jooq.impl.SQLDataType.CHAR.length(64), PROC);
+ public static final org.jooq.TableField DB = createField("db", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROC);
/**
* The column mysql.proc.name.
*/
- public static final org.jooq.TableField NAME = createField("name", org.jooq.impl.SQLDataType.CHAR.length(64), PROC);
+ public static final org.jooq.TableField NAME = createField("name", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROC);
/**
* The column mysql.proc.type.
@@ -46,7 +46,7 @@ public class Proc extends org.jooq.impl.TableImpl {
/**
* The column mysql.proc.specific_name.
*/
- public static final org.jooq.TableField SPECIFIC_NAME = createField("specific_name", org.jooq.impl.SQLDataType.CHAR.length(64), PROC);
+ public static final org.jooq.TableField SPECIFIC_NAME = createField("specific_name", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROC);
/**
* The column mysql.proc.language.
@@ -71,42 +71,42 @@ public class Proc extends org.jooq.impl.TableImpl {
/**
* The column mysql.proc.param_list.
*/
- public static final org.jooq.TableField PARAM_LIST = createField("param_list", org.jooq.impl.SQLDataType.BLOB.length(65535), PROC);
+ public static final org.jooq.TableField PARAM_LIST = createField("param_list", org.jooq.impl.SQLDataType.BLOB.length(65535).nullable(false), PROC);
/**
* The column mysql.proc.returns.
*/
- public static final org.jooq.TableField RETURNS = createField("returns", org.jooq.impl.SQLDataType.BLOB, PROC);
+ public static final org.jooq.TableField RETURNS = createField("returns", org.jooq.impl.SQLDataType.BLOB.nullable(false), PROC);
/**
* The column mysql.proc.body.
*/
- public static final org.jooq.TableField BODY = createField("body", org.jooq.impl.SQLDataType.BLOB, PROC);
+ public static final org.jooq.TableField BODY = createField("body", org.jooq.impl.SQLDataType.BLOB.nullable(false), PROC);
/**
* The column mysql.proc.definer.
*/
- public static final org.jooq.TableField DEFINER = createField("definer", org.jooq.impl.SQLDataType.CHAR.length(77), PROC);
+ public static final org.jooq.TableField DEFINER = createField("definer", org.jooq.impl.SQLDataType.CHAR.length(77).nullable(false).defaulted(true), PROC);
/**
* The column mysql.proc.created.
*/
- public static final org.jooq.TableField CREATED = createField("created", org.jooq.impl.SQLDataType.TIMESTAMP, PROC);
+ public static final org.jooq.TableField CREATED = createField("created", org.jooq.impl.SQLDataType.TIMESTAMP.nullable(false).defaulted(true), PROC);
/**
* The column mysql.proc.modified.
*/
- public static final org.jooq.TableField MODIFIED = createField("modified", org.jooq.impl.SQLDataType.TIMESTAMP, PROC);
+ public static final org.jooq.TableField MODIFIED = createField("modified", org.jooq.impl.SQLDataType.TIMESTAMP.nullable(false).defaulted(true), PROC);
/**
* The column mysql.proc.sql_mode.
*/
- public static final org.jooq.TableField SQL_MODE = createField("sql_mode", org.jooq.impl.SQLDataType.VARCHAR.length(478), PROC);
+ public static final org.jooq.TableField SQL_MODE = createField("sql_mode", org.jooq.impl.SQLDataType.VARCHAR.length(478).nullable(false).defaulted(true), PROC);
/**
* The column mysql.proc.comment.
*/
- public static final org.jooq.TableField COMMENT = createField("comment", org.jooq.impl.SQLDataType.CLOB.length(65535), PROC);
+ public static final org.jooq.TableField COMMENT = createField("comment", org.jooq.impl.SQLDataType.CLOB.length(65535).nullable(false), PROC);
/**
* The column mysql.proc.character_set_client.
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/tables/ProcsPriv.java b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/tables/ProcsPriv.java
index a83c98d787..8399201677 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/tables/ProcsPriv.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/mysql/mysql/tables/ProcsPriv.java
@@ -8,12 +8,12 @@ package org.jooq.util.mysql.mysql.tables;
*
* Procedure privileges
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.1.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class ProcsPriv extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -1915884789;
+ private static final long serialVersionUID = -208124835;
/**
* The singleton instance of mysql.procs_priv
@@ -31,22 +31,22 @@ public class ProcsPriv extends org.jooq.impl.TableImpl {
/**
* The column mysql.procs_priv.Host.
*/
- public static final org.jooq.TableField HOST = createField("Host", org.jooq.impl.SQLDataType.CHAR.length(60), PROCS_PRIV);
+ public static final org.jooq.TableField HOST = createField("Host", org.jooq.impl.SQLDataType.CHAR.length(60).nullable(false).defaulted(true), PROCS_PRIV);
/**
* The column mysql.procs_priv.Db.
*/
- public static final org.jooq.TableField DB = createField("Db", org.jooq.impl.SQLDataType.CHAR.length(64), PROCS_PRIV);
+ public static final org.jooq.TableField DB = createField("Db", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROCS_PRIV);
/**
* The column mysql.procs_priv.User.
*/
- public static final org.jooq.TableField USER = createField("User", org.jooq.impl.SQLDataType.CHAR.length(16), PROCS_PRIV);
+ public static final org.jooq.TableField USER = createField("User", org.jooq.impl.SQLDataType.CHAR.length(16).nullable(false).defaulted(true), PROCS_PRIV);
/**
* The column mysql.procs_priv.Routine_name.
*/
- public static final org.jooq.TableField ROUTINE_NAME = createField("Routine_name", org.jooq.impl.SQLDataType.CHAR.length(64), PROCS_PRIV);
+ public static final org.jooq.TableField ROUTINE_NAME = createField("Routine_name", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROCS_PRIV);
/**
* The column mysql.procs_priv.Routine_type.
@@ -56,17 +56,17 @@ public class ProcsPriv extends org.jooq.impl.TableImpl {
/**
* The column mysql.procs_priv.Grantor.
*/
- public static final org.jooq.TableField GRANTOR = createField("Grantor", org.jooq.impl.SQLDataType.CHAR.length(77), PROCS_PRIV);
+ public static final org.jooq.TableField GRANTOR = createField("Grantor", org.jooq.impl.SQLDataType.CHAR.length(77).nullable(false).defaulted(true), PROCS_PRIV);
/**
* The column mysql.procs_priv.Proc_priv.
*/
- public static final org.jooq.TableField PROC_PRIV = createField("Proc_priv", org.jooq.impl.SQLDataType.VARCHAR.length(27), PROCS_PRIV);
+ public static final org.jooq.TableField PROC_PRIV = createField("Proc_priv", org.jooq.impl.SQLDataType.VARCHAR.length(27).nullable(false).defaulted(true), PROCS_PRIV);
/**
* The column mysql.procs_priv.Timestamp.
*/
- public static final org.jooq.TableField TIMESTAMP = createField("Timestamp", org.jooq.impl.SQLDataType.TIMESTAMP, PROCS_PRIV);
+ public static final org.jooq.TableField TIMESTAMP = createField("Timestamp", org.jooq.impl.SQLDataType.TIMESTAMP.nullable(false).defaulted(true), PROCS_PRIV);
/**
* No further instances allowed
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 d0db447e13..fff83bec07 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,12 +6,12 @@ package org.jooq.util.postgres.pg_catalog;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.2.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class PgCatalog extends org.jooq.impl.SchemaImpl {
- private static final long serialVersionUID = 1664693019;
+ private static final long serialVersionUID = 1772311162;
/**
* The singleton instance of pg_catalog
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 275b7fedd3..adc424fdba 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", "3.2.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Routines {
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Tables.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Tables.java
index d792f23f64..88b429633a 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Tables.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Tables.java
@@ -8,7 +8,7 @@ package org.jooq.util.postgres.pg_catalog;
*
* Convenience access to all tables in pg_catalog
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.2.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Tables {
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count1.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count1.java
index 78478d27db..3f6d0c3d7a 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count1.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count1.java
@@ -6,12 +6,12 @@ package org.jooq.util.postgres.pg_catalog.routines;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.2.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Count1 extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = -1445263127;
+ private static final long serialVersionUID = -1113454200;
/**
* The parameter pg_catalog.count.RETURN_VALUE.
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count2.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count2.java
index a2fd583a50..202ddc1dce 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count2.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count2.java
@@ -6,12 +6,12 @@ package org.jooq.util.postgres.pg_catalog.routines;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.2.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Count2 extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = -244250702;
+ private static final long serialVersionUID = 1606638259;
/**
* The parameter pg_catalog.count.RETURN_VALUE.
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 6c18c316a3..f0f55ec963 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,12 +6,12 @@ package org.jooq.util.postgres.pg_catalog.routines;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.2.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class FormatType extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = -979451566;
+ private static final long serialVersionUID = -303215695;
/**
* The parameter pg_catalog.format_type.RETURN_VALUE.
diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/PgCursor.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/PgCursor.java
index 384a1ebc88..876e2fd1e6 100644
--- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/PgCursor.java
+++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/PgCursor.java
@@ -6,12 +6,12 @@ package org.jooq.util.postgres.pg_catalog.routines;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.2.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class PgCursor extends org.jooq.impl.AbstractRoutine {
- private static final long serialVersionUID = -51830201;
+ private static final long serialVersionUID = -471754394;
/**
* The parameter pg_catalog.pg_cursor.name.
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 a684a913f2..4133e46c04 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,12 +6,12 @@ package org.jooq.util.postgres.pg_catalog.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.2.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class PgAttribute extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -53837591;
+ private static final long serialVersionUID = 960864586;
/**
* The singleton instance of pg_catalog.pg_attribute
@@ -29,92 +29,92 @@ public class PgAttribute extends org.jooq.impl.TableImpl {
/**
* The column pg_catalog.pg_attribute.attrelid.
*/
- public final org.jooq.TableField ATTRELID = createField("attrelid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
+ public final org.jooq.TableField ATTRELID = createField("attrelid", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attname.
*/
- public final org.jooq.TableField ATTNAME = createField("attname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
+ public final org.jooq.TableField ATTNAME = createField("attname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.atttypid.
*/
- public final org.jooq.TableField ATTTYPID = createField("atttypid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
+ public final org.jooq.TableField ATTTYPID = createField("atttypid", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attstattarget.
*/
- public final org.jooq.TableField ATTSTATTARGET = createField("attstattarget", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
+ public final org.jooq.TableField ATTSTATTARGET = createField("attstattarget", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attlen.
*/
- public final org.jooq.TableField ATTLEN = createField("attlen", org.jooq.impl.SQLDataType.SMALLINT.nullable(false), this);
+ public final org.jooq.TableField ATTLEN = createField("attlen", org.jooq.impl.SQLDataType.SMALLINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attnum.
*/
- public final org.jooq.TableField ATTNUM = createField("attnum", org.jooq.impl.SQLDataType.SMALLINT.nullable(false), this);
+ public final org.jooq.TableField ATTNUM = createField("attnum", org.jooq.impl.SQLDataType.SMALLINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attndims.
*/
- public final org.jooq.TableField ATTNDIMS = createField("attndims", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
+ public final org.jooq.TableField ATTNDIMS = createField("attndims", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attcacheoff.
*/
- public final org.jooq.TableField ATTCACHEOFF = createField("attcacheoff", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
+ public final org.jooq.TableField ATTCACHEOFF = createField("attcacheoff", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.atttypmod.
*/
- public final org.jooq.TableField ATTTYPMOD = createField("atttypmod", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
+ public final org.jooq.TableField ATTTYPMOD = createField("atttypmod", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attbyval.
*/
- public final org.jooq.TableField ATTBYVAL = createField("attbyval", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
+ public final org.jooq.TableField ATTBYVAL = createField("attbyval", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attstorage.
*/
- public final org.jooq.TableField ATTSTORAGE = createField("attstorage", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
+ public final org.jooq.TableField ATTSTORAGE = createField("attstorage", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attalign.
*/
- public final org.jooq.TableField ATTALIGN = createField("attalign", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
+ public final org.jooq.TableField ATTALIGN = createField("attalign", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attnotnull.
*/
- public final org.jooq.TableField ATTNOTNULL = createField("attnotnull", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
+ public final org.jooq.TableField ATTNOTNULL = createField("attnotnull", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.atthasdef.
*/
- public final org.jooq.TableField ATTHASDEF = createField("atthasdef", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
+ public final org.jooq.TableField ATTHASDEF = createField("atthasdef", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attisdropped.
*/
- public final org.jooq.TableField ATTISDROPPED = createField("attisdropped", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
+ public final org.jooq.TableField ATTISDROPPED = createField("attisdropped", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attislocal.
*/
- public final org.jooq.TableField ATTISLOCAL = createField("attislocal", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
+ public final org.jooq.TableField ATTISLOCAL = createField("attislocal", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attinhcount.
*/
- public final org.jooq.TableField ATTINHCOUNT = createField("attinhcount", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
+ public final org.jooq.TableField ATTINHCOUNT = createField("attinhcount", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attcollation.
*/
- public final org.jooq.TableField ATTCOLLATION = createField("attcollation", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
+ public final org.jooq.TableField ATTCOLLATION = createField("attcollation", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_attribute.attacl.
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 e2dd119501..9d7583c767 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,12 +6,12 @@ package org.jooq.util.postgres.pg_catalog.tables;
/**
* This class is generated by jOOQ.
*/
-@javax.annotation.Generated(value = { "http://www.jooq.org", "3.2.0" },
+@javax.annotation.Generated(value = { "http://www.jooq.org", "3.3.0" },
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class PgClass extends org.jooq.impl.TableImpl {
- private static final long serialVersionUID = -1300175670;
+ private static final long serialVersionUID = -671011086;
/**
* The singleton instance of pg_catalog.pg_class
@@ -29,127 +29,127 @@ public class PgClass extends org.jooq.impl.TableImpl {
/**
* The column pg_catalog.pg_class.relname.
*/
- public final org.jooq.TableField RELNAME = createField("relname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
+ public final org.jooq.TableField RELNAME = createField("relname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relnamespace.
*/
- public final org.jooq.TableField RELNAMESPACE = createField("relnamespace", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
+ public final org.jooq.TableField RELNAMESPACE = createField("relnamespace", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.reltype.
*/
- public final org.jooq.TableField RELTYPE = createField("reltype", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
+ public final org.jooq.TableField RELTYPE = createField("reltype", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.reloftype.
*/
- public final org.jooq.TableField RELOFTYPE = createField("reloftype", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
+ public final org.jooq.TableField RELOFTYPE = createField("reloftype", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relowner.
*/
- public final org.jooq.TableField RELOWNER = createField("relowner", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
+ public final org.jooq.TableField RELOWNER = createField("relowner", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relam.
*/
- public final org.jooq.TableField RELAM = createField("relam", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
+ public final org.jooq.TableField RELAM = createField("relam", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relfilenode.
*/
- public final org.jooq.TableField RELFILENODE = createField("relfilenode", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
+ public final org.jooq.TableField RELFILENODE = createField("relfilenode", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.reltablespace.
*/
- public final org.jooq.TableField RELTABLESPACE = createField("reltablespace", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
+ public final org.jooq.TableField RELTABLESPACE = createField("reltablespace", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relpages.
*/
- public final org.jooq.TableField RELPAGES = createField("relpages", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
+ public final org.jooq.TableField RELPAGES = createField("relpages", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.reltuples.
*/
- public final org.jooq.TableField RELTUPLES = createField("reltuples", org.jooq.impl.SQLDataType.REAL.nullable(false), this);
+ public final org.jooq.TableField RELTUPLES = createField("reltuples", org.jooq.impl.SQLDataType.REAL.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relallvisible.
*/
- public final org.jooq.TableField RELALLVISIBLE = createField("relallvisible", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
+ public final org.jooq.TableField RELALLVISIBLE = createField("relallvisible", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.reltoastrelid.
*/
- public final org.jooq.TableField RELTOASTRELID = createField("reltoastrelid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
+ public final org.jooq.TableField RELTOASTRELID = createField("reltoastrelid", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.reltoastidxid.
*/
- public final org.jooq.TableField RELTOASTIDXID = createField("reltoastidxid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
+ public final org.jooq.TableField RELTOASTIDXID = createField("reltoastidxid", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relhasindex.
*/
- public final org.jooq.TableField RELHASINDEX = createField("relhasindex", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
+ public final org.jooq.TableField RELHASINDEX = createField("relhasindex", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relisshared.
*/
- public final org.jooq.TableField RELISSHARED = createField("relisshared", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
+ public final org.jooq.TableField RELISSHARED = createField("relisshared", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relpersistence.
*/
- public final org.jooq.TableField RELPERSISTENCE = createField("relpersistence", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
+ public final org.jooq.TableField RELPERSISTENCE = createField("relpersistence", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relkind.
*/
- public final org.jooq.TableField RELKIND = createField("relkind", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
+ public final org.jooq.TableField RELKIND = createField("relkind", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relnatts.
*/
- public final org.jooq.TableField RELNATTS = createField("relnatts", org.jooq.impl.SQLDataType.SMALLINT.nullable(false), this);
+ public final org.jooq.TableField RELNATTS = createField("relnatts", org.jooq.impl.SQLDataType.SMALLINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relchecks.
*/
- public final org.jooq.TableField RELCHECKS = createField("relchecks", org.jooq.impl.SQLDataType.SMALLINT.nullable(false), this);
+ public final org.jooq.TableField RELCHECKS = createField("relchecks", org.jooq.impl.SQLDataType.SMALLINT.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relhasoids.
*/
- public final org.jooq.TableField RELHASOIDS = createField("relhasoids", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
+ public final org.jooq.TableField RELHASOIDS = createField("relhasoids", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relhaspkey.
*/
- public final org.jooq.TableField RELHASPKEY = createField("relhaspkey", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
+ public final org.jooq.TableField RELHASPKEY = createField("relhaspkey", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
/**
* The column pg_catalog.pg_class.relhasrules.
*/
- public final org.jooq.TableField RELHASRULES = createField("relhasrules", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
+ public final org.jooq.TableField