[#2885] Generated enum values contain extra comma - Regenerated information schemas
This commit is contained in:
parent
a23aef9e57
commit
a17a865fdd
@ -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 <code>information_schema</code>
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -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<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = -2094152338;
|
||||
private static final long serialVersionUID = 1277362921;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>information_schema.COLUMNS</code>
|
||||
@ -29,27 +29,27 @@ public class Columns extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.TABLE_CATALOG</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), COLUMNS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), COLUMNS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.TABLE_SCHEMA</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), COLUMNS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), COLUMNS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.TABLE_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), COLUMNS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), COLUMNS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.COLUMN_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COLUMN_NAME = createField("COLUMN_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), COLUMNS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COLUMN_NAME = createField("COLUMN_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), COLUMNS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.ORDINAL_POSITION</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, org.jooq.types.ULong> ORDINAL_POSITION = createField("ORDINAL_POSITION", org.jooq.impl.SQLDataType.BIGINTUNSIGNED, COLUMNS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, org.jooq.types.ULong> ORDINAL_POSITION = createField("ORDINAL_POSITION", org.jooq.impl.SQLDataType.BIGINTUNSIGNED.nullable(false).defaulted(true), COLUMNS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.COLUMN_DEFAULT</code>.
|
||||
@ -59,12 +59,12 @@ public class Columns extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.IS_NULLABLE</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> IS_NULLABLE = createField("IS_NULLABLE", org.jooq.impl.SQLDataType.VARCHAR.length(3), COLUMNS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> IS_NULLABLE = createField("IS_NULLABLE", org.jooq.impl.SQLDataType.VARCHAR.length(3).nullable(false).defaulted(true), COLUMNS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.DATA_TYPE</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DATA_TYPE = createField("DATA_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64), COLUMNS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DATA_TYPE = createField("DATA_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), COLUMNS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.CHARACTER_MAXIMUM_LENGTH</code>.
|
||||
@ -99,27 +99,27 @@ public class Columns extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.COLUMN_TYPE</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COLUMN_TYPE = createField("COLUMN_TYPE", org.jooq.impl.SQLDataType.CLOB, COLUMNS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COLUMN_TYPE = createField("COLUMN_TYPE", org.jooq.impl.SQLDataType.CLOB.nullable(false), COLUMNS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.COLUMN_KEY</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COLUMN_KEY = createField("COLUMN_KEY", org.jooq.impl.SQLDataType.VARCHAR.length(3), COLUMNS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COLUMN_KEY = createField("COLUMN_KEY", org.jooq.impl.SQLDataType.VARCHAR.length(3).nullable(false).defaulted(true), COLUMNS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.EXTRA</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> EXTRA = createField("EXTRA", org.jooq.impl.SQLDataType.VARCHAR.length(27), COLUMNS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> EXTRA = createField("EXTRA", org.jooq.impl.SQLDataType.VARCHAR.length(27).nullable(false).defaulted(true), COLUMNS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.PRIVILEGES</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> PRIVILEGES = createField("PRIVILEGES", org.jooq.impl.SQLDataType.VARCHAR.length(80), COLUMNS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> PRIVILEGES = createField("PRIVILEGES", org.jooq.impl.SQLDataType.VARCHAR.length(80).nullable(false).defaulted(true), COLUMNS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.COLUMNS.COLUMN_COMMENT</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COLUMN_COMMENT = createField("COLUMN_COMMENT", org.jooq.impl.SQLDataType.VARCHAR.length(1024), COLUMNS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COLUMN_COMMENT = createField("COLUMN_COMMENT", org.jooq.impl.SQLDataType.VARCHAR.length(1024).nullable(false).defaulted(true), COLUMNS);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
|
||||
@ -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<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = 740257576;
|
||||
private static final long serialVersionUID = 730855986;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>information_schema.KEY_COLUMN_USAGE</code>
|
||||
@ -29,42 +29,42 @@ public class KeyColumnUsage extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>information_schema.KEY_COLUMN_USAGE.CONSTRAINT_CATALOG</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_CATALOG = createField("CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), KEY_COLUMN_USAGE);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_CATALOG = createField("CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.KEY_COLUMN_USAGE.CONSTRAINT_SCHEMA</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_SCHEMA = createField("CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), KEY_COLUMN_USAGE);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_SCHEMA = createField("CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.KEY_COLUMN_USAGE.CONSTRAINT_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_NAME = createField("CONSTRAINT_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), KEY_COLUMN_USAGE);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_NAME = createField("CONSTRAINT_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.KEY_COLUMN_USAGE.TABLE_CATALOG</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), KEY_COLUMN_USAGE);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.KEY_COLUMN_USAGE.TABLE_SCHEMA</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), KEY_COLUMN_USAGE);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.KEY_COLUMN_USAGE.TABLE_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), KEY_COLUMN_USAGE);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.KEY_COLUMN_USAGE.COLUMN_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COLUMN_NAME = createField("COLUMN_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), KEY_COLUMN_USAGE);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COLUMN_NAME = createField("COLUMN_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), KEY_COLUMN_USAGE);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.KEY_COLUMN_USAGE.ORDINAL_POSITION</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.Long> ORDINAL_POSITION = createField("ORDINAL_POSITION", org.jooq.impl.SQLDataType.BIGINT, KEY_COLUMN_USAGE);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.Long> ORDINAL_POSITION = createField("ORDINAL_POSITION", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), KEY_COLUMN_USAGE);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.KEY_COLUMN_USAGE.POSITION_IN_UNIQUE_CONSTRAINT</code>.
|
||||
|
||||
@ -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<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = 980337494;
|
||||
private static final long serialVersionUID = 1748825549;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>information_schema.PARAMETERS</code>
|
||||
@ -29,22 +29,22 @@ public class Parameters extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>information_schema.PARAMETERS.SPECIFIC_CATALOG</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SPECIFIC_CATALOG = createField("SPECIFIC_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), PARAMETERS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SPECIFIC_CATALOG = createField("SPECIFIC_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), PARAMETERS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.PARAMETERS.SPECIFIC_SCHEMA</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SPECIFIC_SCHEMA = createField("SPECIFIC_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), PARAMETERS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SPECIFIC_SCHEMA = createField("SPECIFIC_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), PARAMETERS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.PARAMETERS.SPECIFIC_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SPECIFIC_NAME = createField("SPECIFIC_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), PARAMETERS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SPECIFIC_NAME = createField("SPECIFIC_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), PARAMETERS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.PARAMETERS.ORDINAL_POSITION</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.Integer> ORDINAL_POSITION = createField("ORDINAL_POSITION", org.jooq.impl.SQLDataType.INTEGER, PARAMETERS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.Integer> ORDINAL_POSITION = createField("ORDINAL_POSITION", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), PARAMETERS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.PARAMETERS.PARAMETER_MODE</code>.
|
||||
@ -59,7 +59,7 @@ public class Parameters extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>information_schema.PARAMETERS.DATA_TYPE</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DATA_TYPE = createField("DATA_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64), PARAMETERS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DATA_TYPE = createField("DATA_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), PARAMETERS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.PARAMETERS.CHARACTER_MAXIMUM_LENGTH</code>.
|
||||
@ -94,12 +94,12 @@ public class Parameters extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>information_schema.PARAMETERS.DTD_IDENTIFIER</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DTD_IDENTIFIER = createField("DTD_IDENTIFIER", org.jooq.impl.SQLDataType.CLOB, PARAMETERS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DTD_IDENTIFIER = createField("DTD_IDENTIFIER", org.jooq.impl.SQLDataType.CLOB.nullable(false), PARAMETERS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.PARAMETERS.ROUTINE_TYPE</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> ROUTINE_TYPE = createField("ROUTINE_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(9), PARAMETERS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> ROUTINE_TYPE = createField("ROUTINE_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(9).nullable(false).defaulted(true), PARAMETERS);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
|
||||
@ -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<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = -331110683;
|
||||
private static final long serialVersionUID = -718267817;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>information_schema.REFERENTIAL_CONSTRAINTS</code>
|
||||
@ -29,27 +29,27 @@ public class ReferentialConstraints extends org.jooq.impl.TableImpl<org.jooq.Rec
|
||||
/**
|
||||
* The column <code>information_schema.REFERENTIAL_CONSTRAINTS.CONSTRAINT_CATALOG</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_CATALOG = createField("CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), REFERENTIAL_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_CATALOG = createField("CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.REFERENTIAL_CONSTRAINTS.CONSTRAINT_SCHEMA</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_SCHEMA = createField("CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_SCHEMA = createField("CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.REFERENTIAL_CONSTRAINTS.CONSTRAINT_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_NAME = createField("CONSTRAINT_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_NAME = createField("CONSTRAINT_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.REFERENTIAL_CONSTRAINTS.UNIQUE_CONSTRAINT_CATALOG</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> UNIQUE_CONSTRAINT_CATALOG = createField("UNIQUE_CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), REFERENTIAL_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> UNIQUE_CONSTRAINT_CATALOG = createField("UNIQUE_CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.REFERENTIAL_CONSTRAINTS.UNIQUE_CONSTRAINT_SCHEMA</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> UNIQUE_CONSTRAINT_SCHEMA = createField("UNIQUE_CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> UNIQUE_CONSTRAINT_SCHEMA = createField("UNIQUE_CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.REFERENTIAL_CONSTRAINTS.UNIQUE_CONSTRAINT_NAME</code>.
|
||||
@ -59,27 +59,27 @@ public class ReferentialConstraints extends org.jooq.impl.TableImpl<org.jooq.Rec
|
||||
/**
|
||||
* The column <code>information_schema.REFERENTIAL_CONSTRAINTS.MATCH_OPTION</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> MATCH_OPTION = createField("MATCH_OPTION", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> MATCH_OPTION = createField("MATCH_OPTION", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.REFERENTIAL_CONSTRAINTS.UPDATE_RULE</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> UPDATE_RULE = createField("UPDATE_RULE", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> UPDATE_RULE = createField("UPDATE_RULE", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.REFERENTIAL_CONSTRAINTS.DELETE_RULE</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DELETE_RULE = createField("DELETE_RULE", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DELETE_RULE = createField("DELETE_RULE", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.REFERENTIAL_CONSTRAINTS.TABLE_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.REFERENTIAL_CONSTRAINTS.REFERENCED_TABLE_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> REFERENCED_TABLE_NAME = createField("REFERENCED_TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), REFERENTIAL_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> REFERENCED_TABLE_NAME = createField("REFERENCED_TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), REFERENTIAL_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
|
||||
@ -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<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = 1392430307;
|
||||
private static final long serialVersionUID = 1888132957;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>information_schema.SCHEMATA</code>
|
||||
@ -29,22 +29,22 @@ public class Schemata extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>information_schema.SCHEMATA.CATALOG_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CATALOG_NAME = createField("CATALOG_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(512), SCHEMATA);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CATALOG_NAME = createField("CATALOG_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), SCHEMATA);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.SCHEMATA.SCHEMA_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SCHEMA_NAME = createField("SCHEMA_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), SCHEMATA);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SCHEMA_NAME = createField("SCHEMA_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), SCHEMATA);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.SCHEMATA.DEFAULT_CHARACTER_SET_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DEFAULT_CHARACTER_SET_NAME = createField("DEFAULT_CHARACTER_SET_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(32), SCHEMATA);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DEFAULT_CHARACTER_SET_NAME = createField("DEFAULT_CHARACTER_SET_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(32).nullable(false).defaulted(true), SCHEMATA);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.SCHEMATA.DEFAULT_COLLATION_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DEFAULT_COLLATION_NAME = createField("DEFAULT_COLLATION_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(32), SCHEMATA);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DEFAULT_COLLATION_NAME = createField("DEFAULT_COLLATION_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(32).nullable(false).defaulted(true), SCHEMATA);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.SCHEMATA.SQL_PATH</code>.
|
||||
|
||||
@ -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<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = 509219639;
|
||||
private static final long serialVersionUID = -1097051599;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>information_schema.TABLE_CONSTRAINTS</code>
|
||||
@ -29,32 +29,32 @@ public class TableConstraints extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>information_schema.TABLE_CONSTRAINTS.CONSTRAINT_CATALOG</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_CATALOG = createField("CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), TABLE_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_CATALOG = createField("CONSTRAINT_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), TABLE_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.TABLE_CONSTRAINTS.CONSTRAINT_SCHEMA</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_SCHEMA = createField("CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLE_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_SCHEMA = createField("CONSTRAINT_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLE_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.TABLE_CONSTRAINTS.CONSTRAINT_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_NAME = createField("CONSTRAINT_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLE_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_NAME = createField("CONSTRAINT_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLE_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.TABLE_CONSTRAINTS.TABLE_SCHEMA</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLE_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLE_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.TABLE_CONSTRAINTS.TABLE_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLE_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLE_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.TABLE_CONSTRAINTS.CONSTRAINT_TYPE</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_TYPE = createField("CONSTRAINT_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLE_CONSTRAINTS);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> CONSTRAINT_TYPE = createField("CONSTRAINT_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLE_CONSTRAINTS);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
|
||||
@ -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<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = -907476560;
|
||||
private static final long serialVersionUID = -982438782;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>information_schema.TABLES</code>
|
||||
@ -29,22 +29,22 @@ public class Tables extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>information_schema.TABLES.TABLE_CATALOG</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512), TABLES);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_CATALOG = createField("TABLE_CATALOG", org.jooq.impl.SQLDataType.VARCHAR.length(512).nullable(false).defaulted(true), TABLES);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.TABLES.TABLE_SCHEMA</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLES);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_SCHEMA = createField("TABLE_SCHEMA", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLES);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.TABLES.TABLE_NAME</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLES);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_NAME = createField("TABLE_NAME", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLES);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.TABLES.TABLE_TYPE</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_TYPE = createField("TABLE_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64), TABLES);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_TYPE = createField("TABLE_TYPE", org.jooq.impl.SQLDataType.VARCHAR.length(64).nullable(false).defaulted(true), TABLES);
|
||||
|
||||
/**
|
||||
* The column <code>information_schema.TABLES.ENGINE</code>.
|
||||
@ -129,7 +129,7 @@ public class Tables extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>information_schema.TABLES.TABLE_COMMENT</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_COMMENT = createField("TABLE_COMMENT", org.jooq.impl.SQLDataType.VARCHAR.length(2048), TABLES);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> TABLE_COMMENT = createField("TABLE_COMMENT", org.jooq.impl.SQLDataType.VARCHAR.length(2048).nullable(false).defaulted(true), TABLES);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
|
||||
@ -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 <code>mysql</code>
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
@ -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<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = -1196832187;
|
||||
private static final long serialVersionUID = 684136539;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>mysql.proc</code>
|
||||
@ -31,12 +31,12 @@ public class Proc extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>mysql.proc.db</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DB = createField("db", org.jooq.impl.SQLDataType.CHAR.length(64), PROC);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DB = createField("db", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROC);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.proc.name</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.CHAR.length(64), PROC);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROC);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.proc.type</code>.
|
||||
@ -46,7 +46,7 @@ public class Proc extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>mysql.proc.specific_name</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SPECIFIC_NAME = createField("specific_name", org.jooq.impl.SQLDataType.CHAR.length(64), PROC);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SPECIFIC_NAME = createField("specific_name", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROC);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.proc.language</code>.
|
||||
@ -71,42 +71,42 @@ public class Proc extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>mysql.proc.param_list</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, byte[]> PARAM_LIST = createField("param_list", org.jooq.impl.SQLDataType.BLOB.length(65535), PROC);
|
||||
public static final org.jooq.TableField<org.jooq.Record, byte[]> PARAM_LIST = createField("param_list", org.jooq.impl.SQLDataType.BLOB.length(65535).nullable(false), PROC);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.proc.returns</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, byte[]> RETURNS = createField("returns", org.jooq.impl.SQLDataType.BLOB, PROC);
|
||||
public static final org.jooq.TableField<org.jooq.Record, byte[]> RETURNS = createField("returns", org.jooq.impl.SQLDataType.BLOB.nullable(false), PROC);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.proc.body</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, byte[]> BODY = createField("body", org.jooq.impl.SQLDataType.BLOB, PROC);
|
||||
public static final org.jooq.TableField<org.jooq.Record, byte[]> BODY = createField("body", org.jooq.impl.SQLDataType.BLOB.nullable(false), PROC);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.proc.definer</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DEFINER = createField("definer", org.jooq.impl.SQLDataType.CHAR.length(77), PROC);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DEFINER = createField("definer", org.jooq.impl.SQLDataType.CHAR.length(77).nullable(false).defaulted(true), PROC);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.proc.created</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.sql.Timestamp> CREATED = createField("created", org.jooq.impl.SQLDataType.TIMESTAMP, PROC);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.sql.Timestamp> CREATED = createField("created", org.jooq.impl.SQLDataType.TIMESTAMP.nullable(false).defaulted(true), PROC);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.proc.modified</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.sql.Timestamp> MODIFIED = createField("modified", org.jooq.impl.SQLDataType.TIMESTAMP, PROC);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.sql.Timestamp> MODIFIED = createField("modified", org.jooq.impl.SQLDataType.TIMESTAMP.nullable(false).defaulted(true), PROC);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.proc.sql_mode</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SQL_MODE = createField("sql_mode", org.jooq.impl.SQLDataType.VARCHAR.length(478), PROC);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> SQL_MODE = createField("sql_mode", org.jooq.impl.SQLDataType.VARCHAR.length(478).nullable(false).defaulted(true), PROC);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.proc.comment</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COMMENT = createField("comment", org.jooq.impl.SQLDataType.CLOB.length(65535), PROC);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> COMMENT = createField("comment", org.jooq.impl.SQLDataType.CLOB.length(65535).nullable(false), PROC);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.proc.character_set_client</code>.
|
||||
|
||||
@ -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<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = -1915884789;
|
||||
private static final long serialVersionUID = -208124835;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>mysql.procs_priv</code>
|
||||
@ -31,22 +31,22 @@ public class ProcsPriv extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>mysql.procs_priv.Host</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> HOST = createField("Host", org.jooq.impl.SQLDataType.CHAR.length(60), PROCS_PRIV);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> HOST = createField("Host", org.jooq.impl.SQLDataType.CHAR.length(60).nullable(false).defaulted(true), PROCS_PRIV);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.procs_priv.Db</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DB = createField("Db", org.jooq.impl.SQLDataType.CHAR.length(64), PROCS_PRIV);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> DB = createField("Db", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROCS_PRIV);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.procs_priv.User</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> USER = createField("User", org.jooq.impl.SQLDataType.CHAR.length(16), PROCS_PRIV);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> USER = createField("User", org.jooq.impl.SQLDataType.CHAR.length(16).nullable(false).defaulted(true), PROCS_PRIV);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.procs_priv.Routine_name</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> ROUTINE_NAME = createField("Routine_name", org.jooq.impl.SQLDataType.CHAR.length(64), PROCS_PRIV);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> ROUTINE_NAME = createField("Routine_name", org.jooq.impl.SQLDataType.CHAR.length(64).nullable(false).defaulted(true), PROCS_PRIV);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.procs_priv.Routine_type</code>.
|
||||
@ -56,17 +56,17 @@ public class ProcsPriv extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>mysql.procs_priv.Grantor</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> GRANTOR = createField("Grantor", org.jooq.impl.SQLDataType.CHAR.length(77), PROCS_PRIV);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> GRANTOR = createField("Grantor", org.jooq.impl.SQLDataType.CHAR.length(77).nullable(false).defaulted(true), PROCS_PRIV);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.procs_priv.Proc_priv</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> PROC_PRIV = createField("Proc_priv", org.jooq.impl.SQLDataType.VARCHAR.length(27), PROCS_PRIV);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.lang.String> PROC_PRIV = createField("Proc_priv", org.jooq.impl.SQLDataType.VARCHAR.length(27).nullable(false).defaulted(true), PROCS_PRIV);
|
||||
|
||||
/**
|
||||
* The column <code>mysql.procs_priv.Timestamp</code>.
|
||||
*/
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.sql.Timestamp> TIMESTAMP = createField("Timestamp", org.jooq.impl.SQLDataType.TIMESTAMP, PROCS_PRIV);
|
||||
public static final org.jooq.TableField<org.jooq.Record, java.sql.Timestamp> TIMESTAMP = createField("Timestamp", org.jooq.impl.SQLDataType.TIMESTAMP.nullable(false).defaulted(true), PROCS_PRIV);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
|
||||
@ -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 <code>pg_catalog</code>
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -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 {
|
||||
|
||||
@ -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<java.lang.Long> {
|
||||
|
||||
private static final long serialVersionUID = -1445263127;
|
||||
private static final long serialVersionUID = -1113454200;
|
||||
|
||||
/**
|
||||
* The parameter <code>pg_catalog.count.RETURN_VALUE</code>.
|
||||
|
||||
@ -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<java.lang.Long> {
|
||||
|
||||
private static final long serialVersionUID = -244250702;
|
||||
private static final long serialVersionUID = 1606638259;
|
||||
|
||||
/**
|
||||
* The parameter <code>pg_catalog.count.RETURN_VALUE</code>.
|
||||
|
||||
@ -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<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = -979451566;
|
||||
private static final long serialVersionUID = -303215695;
|
||||
|
||||
/**
|
||||
* The parameter <code>pg_catalog.format_type.RETURN_VALUE</code>.
|
||||
|
||||
@ -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<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -51830201;
|
||||
private static final long serialVersionUID = -471754394;
|
||||
|
||||
/**
|
||||
* The parameter <code>pg_catalog.pg_cursor.name</code>.
|
||||
|
||||
@ -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<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = -53837591;
|
||||
private static final long serialVersionUID = 960864586;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>pg_catalog.pg_attribute</code>
|
||||
@ -29,92 +29,92 @@ public class PgAttribute extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attrelid</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> ATTRELID = createField("attrelid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> ATTRELID = createField("attrelid", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attname</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> ATTNAME = createField("attname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> ATTNAME = createField("attname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.atttypid</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> ATTTYPID = createField("atttypid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> ATTTYPID = createField("atttypid", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attstattarget</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> ATTSTATTARGET = createField("attstattarget", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> ATTSTATTARGET = createField("attstattarget", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attlen</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> ATTLEN = createField("attlen", org.jooq.impl.SQLDataType.SMALLINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> ATTLEN = createField("attlen", org.jooq.impl.SQLDataType.SMALLINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attnum</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> ATTNUM = createField("attnum", org.jooq.impl.SQLDataType.SMALLINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> ATTNUM = createField("attnum", org.jooq.impl.SQLDataType.SMALLINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attndims</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> ATTNDIMS = createField("attndims", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> ATTNDIMS = createField("attndims", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attcacheoff</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> ATTCACHEOFF = createField("attcacheoff", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> ATTCACHEOFF = createField("attcacheoff", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.atttypmod</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> ATTTYPMOD = createField("atttypmod", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> ATTTYPMOD = createField("atttypmod", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attbyval</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> ATTBYVAL = createField("attbyval", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> ATTBYVAL = createField("attbyval", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attstorage</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> ATTSTORAGE = createField("attstorage", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> ATTSTORAGE = createField("attstorage", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attalign</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> ATTALIGN = createField("attalign", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> ATTALIGN = createField("attalign", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attnotnull</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> ATTNOTNULL = createField("attnotnull", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> ATTNOTNULL = createField("attnotnull", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.atthasdef</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> ATTHASDEF = createField("atthasdef", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> ATTHASDEF = createField("atthasdef", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attisdropped</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> ATTISDROPPED = createField("attisdropped", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> ATTISDROPPED = createField("attisdropped", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attislocal</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> ATTISLOCAL = createField("attislocal", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> ATTISLOCAL = createField("attislocal", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attinhcount</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> ATTINHCOUNT = createField("attinhcount", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> ATTINHCOUNT = createField("attinhcount", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attcollation</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> ATTCOLLATION = createField("attcollation", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> ATTCOLLATION = createField("attcollation", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_attribute.attacl</code>.
|
||||
|
||||
@ -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<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = -1300175670;
|
||||
private static final long serialVersionUID = -671011086;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>pg_catalog.pg_class</code>
|
||||
@ -29,127 +29,127 @@ public class PgClass extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relname</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> RELNAME = createField("relname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> RELNAME = createField("relname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relnamespace</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELNAMESPACE = createField("relnamespace", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELNAMESPACE = createField("relnamespace", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.reltype</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELTYPE = createField("reltype", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELTYPE = createField("reltype", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.reloftype</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELOFTYPE = createField("reloftype", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELOFTYPE = createField("reloftype", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relowner</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELOWNER = createField("relowner", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELOWNER = createField("relowner", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relam</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELAM = createField("relam", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELAM = createField("relam", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relfilenode</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELFILENODE = createField("relfilenode", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELFILENODE = createField("relfilenode", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.reltablespace</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELTABLESPACE = createField("reltablespace", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELTABLESPACE = createField("reltablespace", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relpages</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> RELPAGES = createField("relpages", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> RELPAGES = createField("relpages", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.reltuples</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Float> RELTUPLES = createField("reltuples", org.jooq.impl.SQLDataType.REAL.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Float> RELTUPLES = createField("reltuples", org.jooq.impl.SQLDataType.REAL.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relallvisible</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> RELALLVISIBLE = createField("relallvisible", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> RELALLVISIBLE = createField("relallvisible", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.reltoastrelid</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELTOASTRELID = createField("reltoastrelid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELTOASTRELID = createField("reltoastrelid", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.reltoastidxid</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELTOASTIDXID = createField("reltoastidxid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELTOASTIDXID = createField("reltoastidxid", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relhasindex</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELHASINDEX = createField("relhasindex", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELHASINDEX = createField("relhasindex", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relisshared</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELISSHARED = createField("relisshared", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELISSHARED = createField("relisshared", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relpersistence</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> RELPERSISTENCE = createField("relpersistence", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> RELPERSISTENCE = createField("relpersistence", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relkind</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> RELKIND = createField("relkind", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> RELKIND = createField("relkind", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relnatts</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> RELNATTS = createField("relnatts", org.jooq.impl.SQLDataType.SMALLINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> RELNATTS = createField("relnatts", org.jooq.impl.SQLDataType.SMALLINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relchecks</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> RELCHECKS = createField("relchecks", org.jooq.impl.SQLDataType.SMALLINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> RELCHECKS = createField("relchecks", org.jooq.impl.SQLDataType.SMALLINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relhasoids</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELHASOIDS = createField("relhasoids", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELHASOIDS = createField("relhasoids", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relhaspkey</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELHASPKEY = createField("relhaspkey", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELHASPKEY = createField("relhaspkey", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relhasrules</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELHASRULES = createField("relhasrules", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELHASRULES = createField("relhasrules", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relhastriggers</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELHASTRIGGERS = createField("relhastriggers", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELHASTRIGGERS = createField("relhastriggers", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relhassubclass</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELHASSUBCLASS = createField("relhassubclass", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELHASSUBCLASS = createField("relhassubclass", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relfrozenxid</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELFROZENXID = createField("relfrozenxid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> RELFROZENXID = createField("relfrozenxid", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_class.relacl</code>.
|
||||
|
||||
@ -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 PgEnum extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = -1178391911;
|
||||
private static final long serialVersionUID = -1475927095;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>pg_catalog.pg_enum</code>
|
||||
@ -29,17 +29,17 @@ public class PgEnum extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_enum.enumtypid</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> ENUMTYPID = createField("enumtypid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> ENUMTYPID = createField("enumtypid", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_enum.enumsortorder</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Float> ENUMSORTORDER = createField("enumsortorder", org.jooq.impl.SQLDataType.REAL.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Float> ENUMSORTORDER = createField("enumsortorder", org.jooq.impl.SQLDataType.REAL.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_enum.enumlabel</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> ENUMLABEL = createField("enumlabel", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> ENUMLABEL = createField("enumlabel", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* Create a <code>pg_catalog.pg_enum</code> table reference
|
||||
|
||||
@ -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 PgInherits extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = 348379159;
|
||||
private static final long serialVersionUID = -93462755;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>pg_catalog.pg_inherits</code>
|
||||
@ -29,17 +29,17 @@ public class PgInherits extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_inherits.inhrelid</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> INHRELID = createField("inhrelid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> INHRELID = createField("inhrelid", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_inherits.inhparent</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> INHPARENT = createField("inhparent", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> INHPARENT = createField("inhparent", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_inherits.inhseqno</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> INHSEQNO = createField("inhseqno", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> INHSEQNO = createField("inhseqno", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* Create a <code>pg_catalog.pg_inherits</code> table reference
|
||||
|
||||
@ -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 PgNamespace extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = 1720133770;
|
||||
private static final long serialVersionUID = -1843622805;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>pg_catalog.pg_namespace</code>
|
||||
@ -29,12 +29,12 @@ public class PgNamespace extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_namespace.nspname</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> NSPNAME = createField("nspname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> NSPNAME = createField("nspname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_namespace.nspowner</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> NSPOWNER = createField("nspowner", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> NSPOWNER = createField("nspowner", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_namespace.nspacl</code>.
|
||||
|
||||
@ -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 PgProc extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = 25740900;
|
||||
private static final long serialVersionUID = -1905328935;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>pg_catalog.pg_proc</code>
|
||||
@ -29,92 +29,92 @@ public class PgProc extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.proname</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> PRONAME = createField("proname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> PRONAME = createField("proname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.pronamespace</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> PRONAMESPACE = createField("pronamespace", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> PRONAMESPACE = createField("pronamespace", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.proowner</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> PROOWNER = createField("proowner", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> PROOWNER = createField("proowner", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.prolang</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> PROLANG = createField("prolang", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> PROLANG = createField("prolang", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.procost</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Float> PROCOST = createField("procost", org.jooq.impl.SQLDataType.REAL.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Float> PROCOST = createField("procost", org.jooq.impl.SQLDataType.REAL.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.prorows</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Float> PROROWS = createField("prorows", org.jooq.impl.SQLDataType.REAL.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Float> PROROWS = createField("prorows", org.jooq.impl.SQLDataType.REAL.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.provariadic</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> PROVARIADIC = createField("provariadic", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> PROVARIADIC = createField("provariadic", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.protransform</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> PROTRANSFORM = createField("protransform", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> PROTRANSFORM = createField("protransform", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.proisagg</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> PROISAGG = createField("proisagg", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> PROISAGG = createField("proisagg", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.proiswindow</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> PROISWINDOW = createField("proiswindow", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> PROISWINDOW = createField("proiswindow", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.prosecdef</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> PROSECDEF = createField("prosecdef", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> PROSECDEF = createField("prosecdef", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.proleakproof</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> PROLEAKPROOF = createField("proleakproof", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> PROLEAKPROOF = createField("proleakproof", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.proisstrict</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> PROISSTRICT = createField("proisstrict", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> PROISSTRICT = createField("proisstrict", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.proretset</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> PRORETSET = createField("proretset", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> PRORETSET = createField("proretset", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.provolatile</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> PROVOLATILE = createField("provolatile", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> PROVOLATILE = createField("provolatile", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.pronargs</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> PRONARGS = createField("pronargs", org.jooq.impl.SQLDataType.SMALLINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> PRONARGS = createField("pronargs", org.jooq.impl.SQLDataType.SMALLINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.pronargdefaults</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> PRONARGDEFAULTS = createField("pronargdefaults", org.jooq.impl.SQLDataType.SMALLINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> PRONARGDEFAULTS = createField("pronargdefaults", org.jooq.impl.SQLDataType.SMALLINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.prorettype</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> PRORETTYPE = createField("prorettype", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> PRORETTYPE = createField("prorettype", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.proargtypes</code>.
|
||||
@ -144,12 +144,12 @@ public class PgProc extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.prosrc</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> PROSRC = createField("prosrc", org.jooq.impl.SQLDataType.CLOB, this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> PROSRC = createField("prosrc", org.jooq.impl.SQLDataType.CLOB.defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.probin</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> PROBIN = createField("probin", org.jooq.impl.SQLDataType.CLOB, this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> PROBIN = createField("probin", org.jooq.impl.SQLDataType.CLOB.defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_proc.proconfig</code>.
|
||||
|
||||
@ -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 PgType extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = -1029465080;
|
||||
private static final long serialVersionUID = -1241036513;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>pg_catalog.pg_type</code>
|
||||
@ -29,137 +29,137 @@ public class PgType extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typname</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPNAME = createField("typname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPNAME = createField("typname", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typnamespace</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPNAMESPACE = createField("typnamespace", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPNAMESPACE = createField("typnamespace", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typowner</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPOWNER = createField("typowner", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPOWNER = createField("typowner", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typlen</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> TYPLEN = createField("typlen", org.jooq.impl.SQLDataType.SMALLINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Short> TYPLEN = createField("typlen", org.jooq.impl.SQLDataType.SMALLINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typbyval</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> TYPBYVAL = createField("typbyval", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> TYPBYVAL = createField("typbyval", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typtype</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPTYPE = createField("typtype", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPTYPE = createField("typtype", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typcategory</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPCATEGORY = createField("typcategory", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPCATEGORY = createField("typcategory", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typispreferred</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> TYPISPREFERRED = createField("typispreferred", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> TYPISPREFERRED = createField("typispreferred", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typisdefined</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> TYPISDEFINED = createField("typisdefined", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> TYPISDEFINED = createField("typisdefined", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typdelim</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPDELIM = createField("typdelim", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPDELIM = createField("typdelim", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typrelid</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPRELID = createField("typrelid", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPRELID = createField("typrelid", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typelem</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPELEM = createField("typelem", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPELEM = createField("typelem", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typarray</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPARRAY = createField("typarray", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPARRAY = createField("typarray", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typinput</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPINPUT = createField("typinput", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPINPUT = createField("typinput", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typoutput</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPOUTPUT = createField("typoutput", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPOUTPUT = createField("typoutput", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typreceive</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPRECEIVE = createField("typreceive", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPRECEIVE = createField("typreceive", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typsend</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPSEND = createField("typsend", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPSEND = createField("typsend", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typmodin</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPMODIN = createField("typmodin", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPMODIN = createField("typmodin", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typmodout</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPMODOUT = createField("typmodout", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPMODOUT = createField("typmodout", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typanalyze</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPANALYZE = createField("typanalyze", org.jooq.impl.SQLDataType.VARCHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPANALYZE = createField("typanalyze", org.jooq.impl.SQLDataType.VARCHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typalign</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPALIGN = createField("typalign", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPALIGN = createField("typalign", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typstorage</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPSTORAGE = createField("typstorage", org.jooq.impl.SQLDataType.CHAR.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPSTORAGE = createField("typstorage", org.jooq.impl.SQLDataType.CHAR.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typnotnull</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> TYPNOTNULL = createField("typnotnull", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> TYPNOTNULL = createField("typnotnull", org.jooq.impl.SQLDataType.BOOLEAN.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typbasetype</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPBASETYPE = createField("typbasetype", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPBASETYPE = createField("typbasetype", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typtypmod</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> TYPTYPMOD = createField("typtypmod", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> TYPTYPMOD = createField("typtypmod", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typndims</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> TYPNDIMS = createField("typndims", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Integer> TYPNDIMS = createField("typndims", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typcollation</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPCOLLATION = createField("typcollation", org.jooq.impl.SQLDataType.BIGINT.nullable(false), this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long> TYPCOLLATION = createField("typcollation", org.jooq.impl.SQLDataType.BIGINT.nullable(false).defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typdefaultbin</code>.
|
||||
@ -169,7 +169,7 @@ public class PgType extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typdefault</code>.
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPDEFAULT = createField("typdefault", org.jooq.impl.SQLDataType.CLOB, this);
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPDEFAULT = createField("typdefault", org.jooq.impl.SQLDataType.CLOB.defaulted(true), this);
|
||||
|
||||
/**
|
||||
* The column <code>pg_catalog.pg_type.typacl</code>.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user