[#1783] Generate @SuppressWarnings("all") in jOOQ-generated artefacts -
Regenerated the pg_catalog schema
This commit is contained in:
parent
26eb0bda24
commit
495ccf658a
@ -6,11 +6,12 @@ package org.jooq.util.postgres.pg_catalog;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class PgCatalog extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = 1109544775;
|
||||
private static final long serialVersionUID = -1418576097;
|
||||
|
||||
/**
|
||||
* The singleton instance of pg_catalog
|
||||
|
||||
@ -5,12 +5,21 @@ package org.jooq.util.postgres.pg_catalog;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A Factory for specific use with the <code>pg_catalog</code> schema.
|
||||
* <p>
|
||||
* This Factory will not render the <code>pg_catalog</code> schema's schema
|
||||
* name in rendered SQL (assuming that you use it as the default schema on
|
||||
* your connection!). Use the more generic {@link org.jooq.util.postgres.PostgresFactory}
|
||||
* or the {@link org.jooq.impl.Factory} instead, if you want to fully qualify
|
||||
* tables, routines, etc.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class PgCatalogFactory extends org.jooq.util.postgres.PostgresFactory {
|
||||
|
||||
private static final long serialVersionUID = 1813233842;
|
||||
private static final long serialVersionUID = -604080175;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
@ -23,6 +32,17 @@ public class PgCatalogFactory extends org.jooq.util.postgres.PostgresFactory {
|
||||
initDefaultSchema();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a factory with a data source
|
||||
*
|
||||
* @param dataSource The data source to use with objects created from this factory
|
||||
*/
|
||||
public PgCatalogFactory(javax.sql.DataSource dataSource) {
|
||||
super(dataSource);
|
||||
|
||||
initDefaultSchema();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a factory with a connection and some settings
|
||||
*
|
||||
@ -35,6 +55,18 @@ public class PgCatalogFactory extends org.jooq.util.postgres.PostgresFactory {
|
||||
initDefaultSchema();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a factory with a data source and some settings
|
||||
*
|
||||
* @param dataSource The data source to use with objects created from this factory
|
||||
* @param settings The settings to apply to objects created from this factory
|
||||
*/
|
||||
public PgCatalogFactory(javax.sql.DataSource dataSource, org.jooq.conf.Settings settings) {
|
||||
super(dataSource, settings);
|
||||
|
||||
initDefaultSchema();
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialise the render mapping's default schema.
|
||||
* <p>
|
||||
|
||||
@ -8,8 +8,9 @@ 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", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public final class Routines {
|
||||
|
||||
/**
|
||||
|
||||
@ -8,39 +8,40 @@ package org.jooq.util.postgres.pg_catalog;
|
||||
*
|
||||
* Convenience access to all tables in pg_catalog
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public final class Tables {
|
||||
|
||||
/**
|
||||
* The table pg_catalog.pg_attribute
|
||||
*/
|
||||
public static org.jooq.util.postgres.pg_catalog.tables.PgAttribute PG_ATTRIBUTE = org.jooq.util.postgres.pg_catalog.tables.PgAttribute.PG_ATTRIBUTE;
|
||||
public static final org.jooq.util.postgres.pg_catalog.tables.PgAttribute PG_ATTRIBUTE = org.jooq.util.postgres.pg_catalog.tables.PgAttribute.PG_ATTRIBUTE;
|
||||
|
||||
/**
|
||||
* The table pg_catalog.pg_class
|
||||
*/
|
||||
public static org.jooq.util.postgres.pg_catalog.tables.PgClass PG_CLASS = org.jooq.util.postgres.pg_catalog.tables.PgClass.PG_CLASS;
|
||||
public static final org.jooq.util.postgres.pg_catalog.tables.PgClass PG_CLASS = org.jooq.util.postgres.pg_catalog.tables.PgClass.PG_CLASS;
|
||||
|
||||
/**
|
||||
* The table pg_catalog.pg_enum
|
||||
*/
|
||||
public static org.jooq.util.postgres.pg_catalog.tables.PgEnum PG_ENUM = org.jooq.util.postgres.pg_catalog.tables.PgEnum.PG_ENUM;
|
||||
public static final org.jooq.util.postgres.pg_catalog.tables.PgEnum PG_ENUM = org.jooq.util.postgres.pg_catalog.tables.PgEnum.PG_ENUM;
|
||||
|
||||
/**
|
||||
* The table pg_catalog.pg_namespace
|
||||
*/
|
||||
public static org.jooq.util.postgres.pg_catalog.tables.PgNamespace PG_NAMESPACE = org.jooq.util.postgres.pg_catalog.tables.PgNamespace.PG_NAMESPACE;
|
||||
public static final org.jooq.util.postgres.pg_catalog.tables.PgNamespace PG_NAMESPACE = org.jooq.util.postgres.pg_catalog.tables.PgNamespace.PG_NAMESPACE;
|
||||
|
||||
/**
|
||||
* The table pg_catalog.pg_proc
|
||||
*/
|
||||
public static org.jooq.util.postgres.pg_catalog.tables.PgProc PG_PROC = org.jooq.util.postgres.pg_catalog.tables.PgProc.PG_PROC;
|
||||
public static final org.jooq.util.postgres.pg_catalog.tables.PgProc PG_PROC = org.jooq.util.postgres.pg_catalog.tables.PgProc.PG_PROC;
|
||||
|
||||
/**
|
||||
* The table pg_catalog.pg_type
|
||||
*/
|
||||
public static org.jooq.util.postgres.pg_catalog.tables.PgType PG_TYPE = org.jooq.util.postgres.pg_catalog.tables.PgType.PG_TYPE;
|
||||
public static final org.jooq.util.postgres.pg_catalog.tables.PgType PG_TYPE = org.jooq.util.postgres.pg_catalog.tables.PgType.PG_TYPE;
|
||||
|
||||
/**
|
||||
* No instances
|
||||
|
||||
@ -6,21 +6,22 @@ package org.jooq.util.postgres.pg_catalog.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class Count1 extends org.jooq.impl.AbstractRoutine<java.lang.Long> {
|
||||
|
||||
private static final long serialVersionUID = 1018949472;
|
||||
private static final long serialVersionUID = -287908440;
|
||||
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The procedure parameter <code>pg_catalog.count.RETURN_VALUE</code>
|
||||
*/
|
||||
public static final org.jooq.Parameter<java.lang.Long> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.BIGINT);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*
|
||||
* The procedure parameter <code>pg_catalog.count._1</code>
|
||||
* <p>
|
||||
* The SQL type of this item ("any", any) could not be mapped.<br/>
|
||||
* Deserialising this field might not work!
|
||||
*/
|
||||
@ -38,10 +39,10 @@ public class Count1 extends org.jooq.impl.AbstractRoutine<java.lang.Long> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the <code>_1</code> parameter to the routine
|
||||
* Set the <code>_1</code> parameter IN value to the routine
|
||||
*/
|
||||
public void set__1(java.lang.Object value) {
|
||||
setValue(_1, value);
|
||||
setValue(org.jooq.util.postgres.pg_catalog.routines.Count1._1, value);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -6,15 +6,16 @@ package org.jooq.util.postgres.pg_catalog.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class Count2 extends org.jooq.impl.AbstractRoutine<java.lang.Long> {
|
||||
|
||||
private static final long serialVersionUID = -101223220;
|
||||
private static final long serialVersionUID = 1739528869;
|
||||
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The procedure parameter <code>pg_catalog.count.RETURN_VALUE</code>
|
||||
*/
|
||||
public static final org.jooq.Parameter<java.lang.Long> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.BIGINT);
|
||||
|
||||
|
||||
@ -6,25 +6,26 @@ package org.jooq.util.postgres.pg_catalog.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class FormatType extends org.jooq.impl.AbstractRoutine<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = 428047358;
|
||||
private static final long serialVersionUID = 277828699;
|
||||
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The procedure parameter <code>pg_catalog.format_type.RETURN_VALUE</code>
|
||||
*/
|
||||
public static final org.jooq.Parameter<java.lang.String> RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.CLOB);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The procedure parameter <code>pg_catalog.format_type._1</code>
|
||||
*/
|
||||
public static final org.jooq.Parameter<java.lang.Long> _1 = createParameter("_1", org.jooq.impl.SQLDataType.BIGINT);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The procedure parameter <code>pg_catalog.format_type._2</code>
|
||||
*/
|
||||
public static final org.jooq.Parameter<java.lang.Integer> _2 = createParameter("_2", org.jooq.impl.SQLDataType.INTEGER);
|
||||
|
||||
@ -40,10 +41,10 @@ public class FormatType extends org.jooq.impl.AbstractRoutine<java.lang.String>
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the <code>_1</code> parameter to the routine
|
||||
* Set the <code>_1</code> parameter IN value to the routine
|
||||
*/
|
||||
public void set__1(java.lang.Long value) {
|
||||
setValue(_1, value);
|
||||
setValue(org.jooq.util.postgres.pg_catalog.routines.FormatType._1, value);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -56,10 +57,10 @@ public class FormatType extends org.jooq.impl.AbstractRoutine<java.lang.String>
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the <code>_2</code> parameter to the routine
|
||||
* Set the <code>_2</code> parameter IN value to the routine
|
||||
*/
|
||||
public void set__2(java.lang.Integer value) {
|
||||
setValue(_2, value);
|
||||
setValue(org.jooq.util.postgres.pg_catalog.routines.FormatType._2, value);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -6,40 +6,41 @@ package org.jooq.util.postgres.pg_catalog.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class PgCursor extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = 1046377097;
|
||||
private static final long serialVersionUID = 1871673689;
|
||||
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The procedure parameter <code>pg_catalog.pg_cursor.name</code>
|
||||
*/
|
||||
public static final org.jooq.Parameter<java.lang.String> NAME = createParameter("name", org.jooq.impl.SQLDataType.CLOB);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The procedure parameter <code>pg_catalog.pg_cursor.statement</code>
|
||||
*/
|
||||
public static final org.jooq.Parameter<java.lang.String> STATEMENT = createParameter("statement", org.jooq.impl.SQLDataType.CLOB);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The procedure parameter <code>pg_catalog.pg_cursor.is_holdable</code>
|
||||
*/
|
||||
public static final org.jooq.Parameter<java.lang.Boolean> IS_HOLDABLE = createParameter("is_holdable", org.jooq.impl.SQLDataType.BOOLEAN);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The procedure parameter <code>pg_catalog.pg_cursor.is_binary</code>
|
||||
*/
|
||||
public static final org.jooq.Parameter<java.lang.Boolean> IS_BINARY = createParameter("is_binary", org.jooq.impl.SQLDataType.BOOLEAN);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The procedure parameter <code>pg_catalog.pg_cursor.is_scrollable</code>
|
||||
*/
|
||||
public static final org.jooq.Parameter<java.lang.Boolean> IS_SCROLLABLE = createParameter("is_scrollable", org.jooq.impl.SQLDataType.BOOLEAN);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The procedure parameter <code>pg_catalog.pg_cursor.creation_time</code>
|
||||
*/
|
||||
public static final org.jooq.Parameter<java.sql.Timestamp> CREATION_TIME = createParameter("creation_time", org.jooq.impl.SQLDataType.TIMESTAMP);
|
||||
|
||||
@ -57,26 +58,44 @@ public class PgCursor extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
addOutParameter(CREATION_TIME);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the <code>name</code> parameter OUT value from the routine
|
||||
*/
|
||||
public java.lang.String getName_() {
|
||||
return getValue(NAME);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the <code>statement</code> parameter OUT value from the routine
|
||||
*/
|
||||
public java.lang.String getStatement() {
|
||||
return getValue(STATEMENT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the <code>is_holdable</code> parameter OUT value from the routine
|
||||
*/
|
||||
public java.lang.Boolean getIsHoldable() {
|
||||
return getValue(IS_HOLDABLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the <code>is_binary</code> parameter OUT value from the routine
|
||||
*/
|
||||
public java.lang.Boolean getIsBinary() {
|
||||
return getValue(IS_BINARY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the <code>is_scrollable</code> parameter OUT value from the routine
|
||||
*/
|
||||
public java.lang.Boolean getIsScrollable() {
|
||||
return getValue(IS_SCROLLABLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the <code>creation_time</code> parameter OUT value from the routine
|
||||
*/
|
||||
public java.sql.Timestamp getCreationTime() {
|
||||
return getValue(CREATION_TIME);
|
||||
}
|
||||
|
||||
@ -6,11 +6,12 @@ package org.jooq.util.postgres.pg_catalog.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class PgAttribute extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = 1961406872;
|
||||
private static final long serialVersionUID = 1121721753;
|
||||
|
||||
/**
|
||||
* The singleton instance of pg_catalog.pg_attribute
|
||||
@ -26,97 +27,97 @@ public class PgAttribute extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_attribute.attacl</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String[]> ATTACL = createField("attacl", org.jooq.impl.SQLDataType.VARCHAR.getArrayDataType(), this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_attribute.attoptions</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String[]> ATTOPTIONS = createField("attoptions", org.jooq.impl.SQLDataType.CLOB.getArrayDataType(), this);
|
||||
|
||||
|
||||
@ -6,11 +6,12 @@ package org.jooq.util.postgres.pg_catalog.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class PgClass extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = -2038078835;
|
||||
private static final long serialVersionUID = -1513422908;
|
||||
|
||||
/**
|
||||
* The singleton instance of pg_catalog.pg_class
|
||||
@ -26,137 +27,137 @@ public class PgClass extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_class.relistemp</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELISTEMP = createField("relistemp", org.jooq.impl.SQLDataType.BOOLEAN, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_class.relhasexclusion</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Boolean> RELHASEXCLUSION = createField("relhasexclusion", org.jooq.impl.SQLDataType.BOOLEAN, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_class.relacl</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String[]> RELACL = createField("relacl", org.jooq.impl.SQLDataType.VARCHAR.getArrayDataType(), this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_class.reloptions</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String[]> RELOPTIONS = createField("reloptions", org.jooq.impl.SQLDataType.CLOB.getArrayDataType(), this);
|
||||
|
||||
|
||||
@ -6,11 +6,12 @@ package org.jooq.util.postgres.pg_catalog.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class PgEnum extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = -741676635;
|
||||
private static final long serialVersionUID = -1888559679;
|
||||
|
||||
/**
|
||||
* The singleton instance of pg_catalog.pg_enum
|
||||
@ -26,12 +27,12 @@ public class PgEnum extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
|
||||
@ -6,11 +6,12 @@ package org.jooq.util.postgres.pg_catalog.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class PgNamespace extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = 2129977430;
|
||||
private static final long serialVersionUID = 1991024890;
|
||||
|
||||
/**
|
||||
* The singleton instance of pg_catalog.pg_namespace
|
||||
@ -26,17 +27,17 @@ public class PgNamespace extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_namespace.nspacl</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String[]> NSPACL = createField("nspacl", org.jooq.impl.SQLDataType.VARCHAR.getArrayDataType(), this);
|
||||
|
||||
|
||||
@ -6,11 +6,12 @@ package org.jooq.util.postgres.pg_catalog.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class PgProc extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = 1760477283;
|
||||
private static final long serialVersionUID = -1050246213;
|
||||
|
||||
/**
|
||||
* The singleton instance of pg_catalog.pg_proc
|
||||
@ -26,127 +27,127 @@ public class PgProc extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_proc.proargtypes</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long[]> PROARGTYPES = createField("proargtypes", org.jooq.impl.SQLDataType.BIGINT.getArrayDataType(), this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_proc.proallargtypes</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.Long[]> PROALLARGTYPES = createField("proallargtypes", org.jooq.impl.SQLDataType.BIGINT.getArrayDataType(), this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_proc.proargmodes</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String[]> PROARGMODES = createField("proargmodes", org.jooq.impl.SQLDataType.CHAR.getArrayDataType(), this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_proc.proargnames</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String[]> PROARGNAMES = createField("proargnames", org.jooq.impl.SQLDataType.CLOB.getArrayDataType(), this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_proc.proargdefaults</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> PROARGDEFAULTS = createField("proargdefaults", org.jooq.impl.SQLDataType.CLOB, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_proc.proconfig</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String[]> PROCONFIG = createField("proconfig", org.jooq.impl.SQLDataType.CLOB.getArrayDataType(), this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_proc.proacl</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String[]> PROACL = createField("proacl", org.jooq.impl.SQLDataType.VARCHAR.getArrayDataType(), this);
|
||||
|
||||
|
||||
@ -6,11 +6,12 @@ package org.jooq.util.postgres.pg_catalog.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.4.0"},
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.6.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public class PgType extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
|
||||
private static final long serialVersionUID = -1252060599;
|
||||
private static final long serialVersionUID = -1397485127;
|
||||
|
||||
/**
|
||||
* The singleton instance of pg_catalog.pg_type
|
||||
@ -26,142 +27,142 @@ public class PgType extends org.jooq.impl.TableImpl<org.jooq.Record> {
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table column <code>pg_catalog.pg_type.typdefaultbin</code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.Record, java.lang.String> TYPDEFAULTBIN = createField("typdefaultbin", org.jooq.impl.SQLDataType.CLOB, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* The table 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);
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user