diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalog.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalog.java index 45bb9ba81c..f261d11393 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalog.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalog.java @@ -6,11 +6,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 diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalogFactory.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalogFactory.java index 2c7876ce2b..59c8e27133 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalogFactory.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/PgCatalogFactory.java @@ -5,12 +5,21 @@ package org.jooq.util.postgres.pg_catalog; /** * This class is generated by jOOQ. + * + * A Factory for specific use with the pg_catalog schema. + *

+ * This Factory will not render the pg_catalog 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. *

diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Routines.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Routines.java index ea86211096..51eea7a175 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Routines.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Routines.java @@ -8,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 { /** diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Tables.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Tables.java index e0ae576105..014dd8fdba 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Tables.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/Tables.java @@ -8,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 diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count1.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count1.java index f490a9fdd1..32a350bd69 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count1.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count1.java @@ -6,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 { - private static final long serialVersionUID = 1018949472; + private static final long serialVersionUID = -287908440; /** - * An uncommented item + * The procedure parameter pg_catalog.count.RETURN_VALUE */ public static final org.jooq.Parameter RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.BIGINT); /** - * An uncommented item - * + * The procedure parameter pg_catalog.count._1 + *

* The SQL type of this item ("any", any) could not be mapped.
* Deserialising this field might not work! */ @@ -38,10 +39,10 @@ public class Count1 extends org.jooq.impl.AbstractRoutine { } /** - * Set the _1 parameter to the routine + * Set the _1 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); } /** diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count2.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count2.java index 065f648dd3..e644272403 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count2.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/Count2.java @@ -6,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 { - private static final long serialVersionUID = -101223220; + private static final long serialVersionUID = 1739528869; /** - * An uncommented item + * The procedure parameter pg_catalog.count.RETURN_VALUE */ public static final org.jooq.Parameter RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.BIGINT); diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/FormatType.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/FormatType.java index 0946dc3c74..ebff4630be 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/FormatType.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/FormatType.java @@ -6,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 { - private static final long serialVersionUID = 428047358; + private static final long serialVersionUID = 277828699; /** - * An uncommented item + * The procedure parameter pg_catalog.format_type.RETURN_VALUE */ public static final org.jooq.Parameter RETURN_VALUE = createParameter("RETURN_VALUE", org.jooq.impl.SQLDataType.CLOB); /** - * An uncommented item + * The procedure parameter pg_catalog.format_type._1 */ public static final org.jooq.Parameter _1 = createParameter("_1", org.jooq.impl.SQLDataType.BIGINT); /** - * An uncommented item + * The procedure parameter pg_catalog.format_type._2 */ public static final org.jooq.Parameter _2 = createParameter("_2", org.jooq.impl.SQLDataType.INTEGER); @@ -40,10 +41,10 @@ public class FormatType extends org.jooq.impl.AbstractRoutine } /** - * Set the _1 parameter to the routine + * Set the _1 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 } /** - * Set the _2 parameter to the routine + * Set the _2 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); } /** diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/PgCursor.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/PgCursor.java index 568f3059a6..1667802c24 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/PgCursor.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/routines/PgCursor.java @@ -6,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 { - private static final long serialVersionUID = 1046377097; + private static final long serialVersionUID = 1871673689; /** - * An uncommented item + * The procedure parameter pg_catalog.pg_cursor.name */ public static final org.jooq.Parameter NAME = createParameter("name", org.jooq.impl.SQLDataType.CLOB); /** - * An uncommented item + * The procedure parameter pg_catalog.pg_cursor.statement */ public static final org.jooq.Parameter STATEMENT = createParameter("statement", org.jooq.impl.SQLDataType.CLOB); /** - * An uncommented item + * The procedure parameter pg_catalog.pg_cursor.is_holdable */ public static final org.jooq.Parameter IS_HOLDABLE = createParameter("is_holdable", org.jooq.impl.SQLDataType.BOOLEAN); /** - * An uncommented item + * The procedure parameter pg_catalog.pg_cursor.is_binary */ public static final org.jooq.Parameter IS_BINARY = createParameter("is_binary", org.jooq.impl.SQLDataType.BOOLEAN); /** - * An uncommented item + * The procedure parameter pg_catalog.pg_cursor.is_scrollable */ public static final org.jooq.Parameter IS_SCROLLABLE = createParameter("is_scrollable", org.jooq.impl.SQLDataType.BOOLEAN); /** - * An uncommented item + * The procedure parameter pg_catalog.pg_cursor.creation_time */ public static final org.jooq.Parameter CREATION_TIME = createParameter("creation_time", org.jooq.impl.SQLDataType.TIMESTAMP); @@ -57,26 +58,44 @@ public class PgCursor extends org.jooq.impl.AbstractRoutine { addOutParameter(CREATION_TIME); } + /** + * Get the name parameter OUT value from the routine + */ public java.lang.String getName_() { return getValue(NAME); } + /** + * Get the statement parameter OUT value from the routine + */ public java.lang.String getStatement() { return getValue(STATEMENT); } + /** + * Get the is_holdable parameter OUT value from the routine + */ public java.lang.Boolean getIsHoldable() { return getValue(IS_HOLDABLE); } + /** + * Get the is_binary parameter OUT value from the routine + */ public java.lang.Boolean getIsBinary() { return getValue(IS_BINARY); } + /** + * Get the is_scrollable parameter OUT value from the routine + */ public java.lang.Boolean getIsScrollable() { return getValue(IS_SCROLLABLE); } + /** + * Get the creation_time parameter OUT value from the routine + */ public java.sql.Timestamp getCreationTime() { return getValue(CREATION_TIME); } diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgAttribute.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgAttribute.java index 80c18eb208..870a8dc622 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgAttribute.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgAttribute.java @@ -6,11 +6,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 { - 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 { } /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attrelid */ public final org.jooq.TableField ATTRELID = createField("attrelid", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attname */ public final org.jooq.TableField ATTNAME = createField("attname", org.jooq.impl.SQLDataType.VARCHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.atttypid */ public final org.jooq.TableField ATTTYPID = createField("atttypid", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attstattarget */ public final org.jooq.TableField ATTSTATTARGET = createField("attstattarget", org.jooq.impl.SQLDataType.INTEGER, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attlen */ public final org.jooq.TableField ATTLEN = createField("attlen", org.jooq.impl.SQLDataType.SMALLINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attnum */ public final org.jooq.TableField ATTNUM = createField("attnum", org.jooq.impl.SQLDataType.SMALLINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attndims */ public final org.jooq.TableField ATTNDIMS = createField("attndims", org.jooq.impl.SQLDataType.INTEGER, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attcacheoff */ public final org.jooq.TableField ATTCACHEOFF = createField("attcacheoff", org.jooq.impl.SQLDataType.INTEGER, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.atttypmod */ public final org.jooq.TableField ATTTYPMOD = createField("atttypmod", org.jooq.impl.SQLDataType.INTEGER, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attbyval */ public final org.jooq.TableField ATTBYVAL = createField("attbyval", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attstorage */ public final org.jooq.TableField ATTSTORAGE = createField("attstorage", org.jooq.impl.SQLDataType.CHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attalign */ public final org.jooq.TableField ATTALIGN = createField("attalign", org.jooq.impl.SQLDataType.CHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attnotnull */ public final org.jooq.TableField ATTNOTNULL = createField("attnotnull", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.atthasdef */ public final org.jooq.TableField ATTHASDEF = createField("atthasdef", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attisdropped */ public final org.jooq.TableField ATTISDROPPED = createField("attisdropped", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attislocal */ public final org.jooq.TableField ATTISLOCAL = createField("attislocal", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attinhcount */ public final org.jooq.TableField ATTINHCOUNT = createField("attinhcount", org.jooq.impl.SQLDataType.INTEGER, this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attacl */ public final org.jooq.TableField ATTACL = createField("attacl", org.jooq.impl.SQLDataType.VARCHAR.getArrayDataType(), this); /** - * An uncommented item + * The table column pg_catalog.pg_attribute.attoptions */ public final org.jooq.TableField ATTOPTIONS = createField("attoptions", org.jooq.impl.SQLDataType.CLOB.getArrayDataType(), this); diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgClass.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgClass.java index c3a9d66b62..4ed78f06a0 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgClass.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgClass.java @@ -6,11 +6,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 { - 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 { } /** - * An uncommented item + * The table column pg_catalog.pg_class.relname */ public final org.jooq.TableField RELNAME = createField("relname", org.jooq.impl.SQLDataType.VARCHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relnamespace */ public final org.jooq.TableField RELNAMESPACE = createField("relnamespace", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.reltype */ public final org.jooq.TableField RELTYPE = createField("reltype", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.reloftype */ public final org.jooq.TableField RELOFTYPE = createField("reloftype", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relowner */ public final org.jooq.TableField RELOWNER = createField("relowner", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relam */ public final org.jooq.TableField RELAM = createField("relam", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relfilenode */ public final org.jooq.TableField RELFILENODE = createField("relfilenode", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.reltablespace */ public final org.jooq.TableField RELTABLESPACE = createField("reltablespace", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relpages */ public final org.jooq.TableField RELPAGES = createField("relpages", org.jooq.impl.SQLDataType.INTEGER, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.reltuples */ public final org.jooq.TableField RELTUPLES = createField("reltuples", org.jooq.impl.SQLDataType.REAL, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.reltoastrelid */ public final org.jooq.TableField RELTOASTRELID = createField("reltoastrelid", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.reltoastidxid */ public final org.jooq.TableField RELTOASTIDXID = createField("reltoastidxid", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relhasindex */ public final org.jooq.TableField RELHASINDEX = createField("relhasindex", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relisshared */ public final org.jooq.TableField RELISSHARED = createField("relisshared", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relistemp */ public final org.jooq.TableField RELISTEMP = createField("relistemp", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relkind */ public final org.jooq.TableField RELKIND = createField("relkind", org.jooq.impl.SQLDataType.CHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relnatts */ public final org.jooq.TableField RELNATTS = createField("relnatts", org.jooq.impl.SQLDataType.SMALLINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relchecks */ public final org.jooq.TableField RELCHECKS = createField("relchecks", org.jooq.impl.SQLDataType.SMALLINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relhasoids */ public final org.jooq.TableField RELHASOIDS = createField("relhasoids", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relhaspkey */ public final org.jooq.TableField RELHASPKEY = createField("relhaspkey", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relhasexclusion */ public final org.jooq.TableField RELHASEXCLUSION = createField("relhasexclusion", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relhasrules */ public final org.jooq.TableField RELHASRULES = createField("relhasrules", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relhastriggers */ public final org.jooq.TableField RELHASTRIGGERS = createField("relhastriggers", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relhassubclass */ public final org.jooq.TableField RELHASSUBCLASS = createField("relhassubclass", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relfrozenxid */ public final org.jooq.TableField RELFROZENXID = createField("relfrozenxid", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_class.relacl */ public final org.jooq.TableField RELACL = createField("relacl", org.jooq.impl.SQLDataType.VARCHAR.getArrayDataType(), this); /** - * An uncommented item + * The table column pg_catalog.pg_class.reloptions */ public final org.jooq.TableField RELOPTIONS = createField("reloptions", org.jooq.impl.SQLDataType.CLOB.getArrayDataType(), this); diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgEnum.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgEnum.java index 3ca36a196f..bd6c648622 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgEnum.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgEnum.java @@ -6,11 +6,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 { - 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 { } /** - * An uncommented item + * The table column pg_catalog.pg_enum.enumtypid */ public final org.jooq.TableField ENUMTYPID = createField("enumtypid", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_enum.enumlabel */ public final org.jooq.TableField ENUMLABEL = createField("enumlabel", org.jooq.impl.SQLDataType.VARCHAR, this); diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgNamespace.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgNamespace.java index e7f3be7b66..57591d82ea 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgNamespace.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgNamespace.java @@ -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 { - 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 { } /** - * An uncommented item + * The table column pg_catalog.pg_namespace.nspname */ public final org.jooq.TableField NSPNAME = createField("nspname", org.jooq.impl.SQLDataType.VARCHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_namespace.nspowner */ public final org.jooq.TableField NSPOWNER = createField("nspowner", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_namespace.nspacl */ public final org.jooq.TableField NSPACL = createField("nspacl", org.jooq.impl.SQLDataType.VARCHAR.getArrayDataType(), this); diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgProc.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgProc.java index 1189871cf1..b52b0db98a 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgProc.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgProc.java @@ -6,11 +6,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 { - 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 { } /** - * An uncommented item + * The table column pg_catalog.pg_proc.proname */ public final org.jooq.TableField PRONAME = createField("proname", org.jooq.impl.SQLDataType.VARCHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.pronamespace */ public final org.jooq.TableField PRONAMESPACE = createField("pronamespace", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.proowner */ public final org.jooq.TableField PROOWNER = createField("proowner", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.prolang */ public final org.jooq.TableField PROLANG = createField("prolang", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.procost */ public final org.jooq.TableField PROCOST = createField("procost", org.jooq.impl.SQLDataType.REAL, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.prorows */ public final org.jooq.TableField PROROWS = createField("prorows", org.jooq.impl.SQLDataType.REAL, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.provariadic */ public final org.jooq.TableField PROVARIADIC = createField("provariadic", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.proisagg */ public final org.jooq.TableField PROISAGG = createField("proisagg", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.proiswindow */ public final org.jooq.TableField PROISWINDOW = createField("proiswindow", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.prosecdef */ public final org.jooq.TableField PROSECDEF = createField("prosecdef", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.proisstrict */ public final org.jooq.TableField PROISSTRICT = createField("proisstrict", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.proretset */ public final org.jooq.TableField PRORETSET = createField("proretset", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.provolatile */ public final org.jooq.TableField PROVOLATILE = createField("provolatile", org.jooq.impl.SQLDataType.CHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.pronargs */ public final org.jooq.TableField PRONARGS = createField("pronargs", org.jooq.impl.SQLDataType.SMALLINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.pronargdefaults */ public final org.jooq.TableField PRONARGDEFAULTS = createField("pronargdefaults", org.jooq.impl.SQLDataType.SMALLINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.prorettype */ public final org.jooq.TableField PRORETTYPE = createField("prorettype", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.proargtypes */ public final org.jooq.TableField PROARGTYPES = createField("proargtypes", org.jooq.impl.SQLDataType.BIGINT.getArrayDataType(), this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.proallargtypes */ public final org.jooq.TableField PROALLARGTYPES = createField("proallargtypes", org.jooq.impl.SQLDataType.BIGINT.getArrayDataType(), this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.proargmodes */ public final org.jooq.TableField PROARGMODES = createField("proargmodes", org.jooq.impl.SQLDataType.CHAR.getArrayDataType(), this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.proargnames */ public final org.jooq.TableField PROARGNAMES = createField("proargnames", org.jooq.impl.SQLDataType.CLOB.getArrayDataType(), this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.proargdefaults */ public final org.jooq.TableField PROARGDEFAULTS = createField("proargdefaults", org.jooq.impl.SQLDataType.CLOB, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.prosrc */ public final org.jooq.TableField PROSRC = createField("prosrc", org.jooq.impl.SQLDataType.CLOB, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.probin */ public final org.jooq.TableField PROBIN = createField("probin", org.jooq.impl.SQLDataType.CLOB, this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.proconfig */ public final org.jooq.TableField PROCONFIG = createField("proconfig", org.jooq.impl.SQLDataType.CLOB.getArrayDataType(), this); /** - * An uncommented item + * The table column pg_catalog.pg_proc.proacl */ public final org.jooq.TableField PROACL = createField("proacl", org.jooq.impl.SQLDataType.VARCHAR.getArrayDataType(), this); diff --git a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgType.java b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgType.java index eaef6873b1..fff70dcf6d 100644 --- a/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgType.java +++ b/jOOQ-meta/src/main/java/org/jooq/util/postgres/pg_catalog/tables/PgType.java @@ -6,11 +6,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 { - 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 { } /** - * An uncommented item + * The table column pg_catalog.pg_type.typname */ public final org.jooq.TableField TYPNAME = createField("typname", org.jooq.impl.SQLDataType.VARCHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typnamespace */ public final org.jooq.TableField TYPNAMESPACE = createField("typnamespace", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typowner */ public final org.jooq.TableField TYPOWNER = createField("typowner", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typlen */ public final org.jooq.TableField TYPLEN = createField("typlen", org.jooq.impl.SQLDataType.SMALLINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typbyval */ public final org.jooq.TableField TYPBYVAL = createField("typbyval", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typtype */ public final org.jooq.TableField TYPTYPE = createField("typtype", org.jooq.impl.SQLDataType.CHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typcategory */ public final org.jooq.TableField TYPCATEGORY = createField("typcategory", org.jooq.impl.SQLDataType.CHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typispreferred */ public final org.jooq.TableField TYPISPREFERRED = createField("typispreferred", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typisdefined */ public final org.jooq.TableField TYPISDEFINED = createField("typisdefined", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typdelim */ public final org.jooq.TableField TYPDELIM = createField("typdelim", org.jooq.impl.SQLDataType.CHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typrelid */ public final org.jooq.TableField TYPRELID = createField("typrelid", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typelem */ public final org.jooq.TableField TYPELEM = createField("typelem", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typarray */ public final org.jooq.TableField TYPARRAY = createField("typarray", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typinput */ public final org.jooq.TableField TYPINPUT = createField("typinput", org.jooq.impl.SQLDataType.VARCHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typoutput */ public final org.jooq.TableField TYPOUTPUT = createField("typoutput", org.jooq.impl.SQLDataType.VARCHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typreceive */ public final org.jooq.TableField TYPRECEIVE = createField("typreceive", org.jooq.impl.SQLDataType.VARCHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typsend */ public final org.jooq.TableField TYPSEND = createField("typsend", org.jooq.impl.SQLDataType.VARCHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typmodin */ public final org.jooq.TableField TYPMODIN = createField("typmodin", org.jooq.impl.SQLDataType.VARCHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typmodout */ public final org.jooq.TableField TYPMODOUT = createField("typmodout", org.jooq.impl.SQLDataType.VARCHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typanalyze */ public final org.jooq.TableField TYPANALYZE = createField("typanalyze", org.jooq.impl.SQLDataType.VARCHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typalign */ public final org.jooq.TableField TYPALIGN = createField("typalign", org.jooq.impl.SQLDataType.CHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typstorage */ public final org.jooq.TableField TYPSTORAGE = createField("typstorage", org.jooq.impl.SQLDataType.CHAR, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typnotnull */ public final org.jooq.TableField TYPNOTNULL = createField("typnotnull", org.jooq.impl.SQLDataType.BOOLEAN, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typbasetype */ public final org.jooq.TableField TYPBASETYPE = createField("typbasetype", org.jooq.impl.SQLDataType.BIGINT, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typtypmod */ public final org.jooq.TableField TYPTYPMOD = createField("typtypmod", org.jooq.impl.SQLDataType.INTEGER, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typndims */ public final org.jooq.TableField TYPNDIMS = createField("typndims", org.jooq.impl.SQLDataType.INTEGER, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typdefaultbin */ public final org.jooq.TableField TYPDEFAULTBIN = createField("typdefaultbin", org.jooq.impl.SQLDataType.CLOB, this); /** - * An uncommented item + * The table column pg_catalog.pg_type.typdefault */ public final org.jooq.TableField TYPDEFAULT = createField("typdefault", org.jooq.impl.SQLDataType.CLOB, this);