Release 3.0.0-RC2 - Regenerated Postgres schema
This commit is contained in:
parent
4b6a1546bc
commit
80bb886468
@ -9,7 +9,7 @@ package org.jooq.test.postgres.generatedclasses;
|
||||
* A class modelling foreign key relationships between tables of the <code>public</code>
|
||||
* schema
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class Keys {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class Public extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = 681210732;
|
||||
private static final long serialVersionUID = -1192380662;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public</code>
|
||||
|
||||
@ -8,8 +8,8 @@ package org.jooq.test.postgres.generatedclasses;
|
||||
*
|
||||
* Convenience access to all stored procedures and functions in public
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public final class Routines {
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class Routines {
|
||||
|
||||
/**
|
||||
* Call <code>public.f_arrays</code>
|
||||
@ -454,9 +454,4 @@ public final class Routines {
|
||||
p.execute(configuration);
|
||||
return p;
|
||||
}
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private Routines() {}
|
||||
}
|
||||
|
||||
@ -8,16 +8,11 @@ package org.jooq.test.postgres.generatedclasses;
|
||||
*
|
||||
* Convenience access to all sequences in public
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public final class Sequences {
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class Sequences {
|
||||
|
||||
/**
|
||||
* The sequence <code>public.s_author_id</code>
|
||||
*/
|
||||
public static final org.jooq.Sequence<java.lang.Long> S_AUTHOR_ID = new org.jooq.impl.SequenceImpl<java.lang.Long>("s_author_id", org.jooq.test.postgres.generatedclasses.Public.PUBLIC, org.jooq.impl.SQLDataType.BIGINT);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private Sequences() {}
|
||||
}
|
||||
|
||||
@ -8,8 +8,8 @@ package org.jooq.test.postgres.generatedclasses;
|
||||
*
|
||||
* Convenience access to all tables in public
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public final class Tables {
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class Tables {
|
||||
|
||||
/**
|
||||
* The table public.t_639_numbers_table
|
||||
@ -145,9 +145,4 @@ public final class Tables {
|
||||
* The table public.x_unused
|
||||
*/
|
||||
public static final org.jooq.test.postgres.generatedclasses.tables.XUnused X_UNUSED = org.jooq.test.postgres.generatedclasses.tables.XUnused.X_UNUSED;
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private Tables() {}
|
||||
}
|
||||
|
||||
@ -8,8 +8,8 @@ package org.jooq.test.postgres.generatedclasses;
|
||||
*
|
||||
* Convenience access to all UDTs in public
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
public final class UDTs {
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class UDTs {
|
||||
|
||||
/**
|
||||
* The type <code>public.u_address_type</code>
|
||||
@ -25,9 +25,4 @@ public final class UDTs {
|
||||
* The type <code>public.u_uuids</code>
|
||||
*/
|
||||
public static org.jooq.test.postgres.generatedclasses.udt.UUuids U_UUIDS = org.jooq.test.postgres.generatedclasses.udt.UUuids.U_UUIDS;
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private UDTs() {}
|
||||
}
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.postgres.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public enum UBookStatus implements org.jooq.EnumType {
|
||||
|
||||
ON_STOCK("ON STOCK"),
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.postgres.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public enum UCountry implements org.jooq.EnumType {
|
||||
|
||||
Brazil("Brazil"),
|
||||
|
||||
@ -6,7 +6,7 @@ package org.jooq.test.postgres.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public enum U_959 implements org.jooq.EnumType {
|
||||
|
||||
abstract_("abstract"),
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class F317 extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = -681666959;
|
||||
private static final long serialVersionUID = 477929853;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.f317.RETURN_VALUE</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class FArrays1 extends org.jooq.impl.AbstractRoutine<java.lang.Integer[]> {
|
||||
|
||||
private static final long serialVersionUID = 2071375489;
|
||||
private static final long serialVersionUID = -467015179;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.f_arrays.RETURN_VALUE</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class FArrays2 extends org.jooq.impl.AbstractRoutine<java.lang.Long[]> {
|
||||
|
||||
private static final long serialVersionUID = -1094635045;
|
||||
private static final long serialVersionUID = 1562124879;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.f_arrays.RETURN_VALUE</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class FArrays3 extends org.jooq.impl.AbstractRoutine<java.lang.String[]> {
|
||||
|
||||
private static final long serialVersionUID = -600699578;
|
||||
private static final long serialVersionUID = -101211206;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.f_arrays.RETURN_VALUE</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class FAuthorExists extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = -1823250448;
|
||||
private static final long serialVersionUID = 58090748;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.f_author_exists.RETURN_VALUE</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class FGetOneCursor extends org.jooq.impl.AbstractRoutine<org.jooq.Result<org.jooq.Record>> {
|
||||
|
||||
private static final long serialVersionUID = 473728705;
|
||||
private static final long serialVersionUID = 621720885;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.f_get_one_cursor.RETURN_VALUE</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class FNumber extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = -1419571657;
|
||||
private static final long serialVersionUID = 1560839235;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.f_number.RETURN_VALUE</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class FOne extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = -425629189;
|
||||
private static final long serialVersionUID = -1847051257;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.f_one.RETURN_VALUE</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class FSearchBook extends org.jooq.impl.AbstractRoutine<java.lang.Object> {
|
||||
|
||||
private static final long serialVersionUID = 1182854928;
|
||||
private static final long serialVersionUID = -1570344420;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.f_search_book.RETURN_VALUE</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class P391 extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = 822678832;
|
||||
private static final long serialVersionUID = 1184102308;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.p391.i1</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class PArrays1 extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -603754976;
|
||||
private static final long serialVersionUID = -1465128300;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.p_arrays.in_array</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class PArrays2 extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -2073817619;
|
||||
private static final long serialVersionUID = 703898977;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.p_arrays.in_array</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class PArrays3 extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -101986804;
|
||||
private static final long serialVersionUID = -1380217984;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.p_arrays.in_array</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class PAuthorExists extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -1479527734;
|
||||
private static final long serialVersionUID = 1232604222;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.p_author_exists.author_name</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class PCreateAuthor extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = 751459504;
|
||||
private static final long serialVersionUID = -673307100;
|
||||
|
||||
/**
|
||||
* Create a new routine call instance
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class PCreateAuthorByName extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -779341686;
|
||||
private static final long serialVersionUID = 254331390;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.p_create_author_by_name.first_name</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class PEnhanceAddress1 extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -1401029710;
|
||||
private static final long serialVersionUID = 321936574;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.p_enhance_address1.address</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class PEnhanceAddress2 extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -661555002;
|
||||
private static final long serialVersionUID = -1177229102;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.p_enhance_address2.address</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class PEnhanceAddress3 extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = 278304657;
|
||||
private static final long serialVersionUID = -609579771;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.p_enhance_address3.address</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class PGetOneCursor extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -78022783;
|
||||
private static final long serialVersionUID = -215462155;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.p_get_one_cursor.total</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class PGetTwoCursors extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -75510105;
|
||||
private static final long serialVersionUID = -1563510349;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.p_get_two_cursors.books</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class PTriggers extends org.jooq.impl.AbstractRoutine<java.lang.Object> {
|
||||
|
||||
private static final long serialVersionUID = -1578307745;
|
||||
private static final long serialVersionUID = -1882544021;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.p_triggers.RETURN_VALUE</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class PUnused extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -1456071553;
|
||||
private static final long serialVersionUID = -455410957;
|
||||
|
||||
/**
|
||||
* The parameter <code>public.p_unused.in1</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TArrays extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TArraysRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1474501897;
|
||||
private static final long serialVersionUID = -1058178513;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_arrays</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1343353958;
|
||||
private static final long serialVersionUID = 931278750;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_author</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 348651499;
|
||||
private static final long serialVersionUID = 1013515555;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_book</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1415589194;
|
||||
private static final long serialVersionUID = -9172862;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_book_store</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 537822279;
|
||||
private static final long serialVersionUID = -1597361281;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_book_to_book_store</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1661028192;
|
||||
private static final long serialVersionUID = 1904959080;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_booleans</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TDates extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TDatesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1577612304;
|
||||
private static final long serialVersionUID = -1769382440;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_dates</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TExoticTypes extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TExoticTypesRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1772414165;
|
||||
private static final long serialVersionUID = -746809245;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_exotic_types</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TIdentity extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TIdentityRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1667681939;
|
||||
private static final long serialVersionUID = 658266277;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_identity</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TIdentityPk extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TIdentityPkRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1524322222;
|
||||
private static final long serialVersionUID = -1300612070;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_identity_pk</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TLanguage extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1111301185;
|
||||
private static final long serialVersionUID = 1758533497;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_language</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TPgExtensions extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TPgExtensionsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1552992902;
|
||||
private static final long serialVersionUID = -2096340914;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_pg_extensions</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TTriggersRecord> {
|
||||
|
||||
private static final long serialVersionUID = 622273626;
|
||||
private static final long serialVersionUID = 1457554322;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_triggers</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_639NumbersTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = 671470529;
|
||||
private static final long serialVersionUID = 1487003897;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_639_numbers_table</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_725LobTestRecord> {
|
||||
|
||||
private static final long serialVersionUID = 388645801;
|
||||
private static final long serialVersionUID = -949132431;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_725_lob_test</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_785 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_785Record> {
|
||||
|
||||
private static final long serialVersionUID = 970864264;
|
||||
private static final long serialVersionUID = -1331988032;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_785</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_959 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_959Record> {
|
||||
|
||||
private static final long serialVersionUID = 479039206;
|
||||
private static final long serialVersionUID = -1752697826;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_959</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_986_1 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_986_1Record> {
|
||||
|
||||
private static final long serialVersionUID = -1311080528;
|
||||
private static final long serialVersionUID = 524669672;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_986_1</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_986_2 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_986_2Record> {
|
||||
|
||||
private static final long serialVersionUID = 1791270092;
|
||||
private static final long serialVersionUID = -667947004;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_986_2</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class VAuthor extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.VAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1986931489;
|
||||
private static final long serialVersionUID = 1167099927;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.v_author</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class VBook extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.VBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = -532941840;
|
||||
private static final long serialVersionUID = 1646159288;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.v_book</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class VLibrary extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.VLibraryRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1083583376;
|
||||
private static final long serialVersionUID = 922504248;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.v_library</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XTestCase_2025 extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_2025Record> {
|
||||
|
||||
private static final long serialVersionUID = 2106684049;
|
||||
private static final long serialVersionUID = 430536281;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.x_test_case_2025</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_64_69Record> {
|
||||
|
||||
private static final long serialVersionUID = -1763652033;
|
||||
private static final long serialVersionUID = -319037433;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.x_test_case_64_69</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_71Record> {
|
||||
|
||||
private static final long serialVersionUID = -407564217;
|
||||
private static final long serialVersionUID = -1352435185;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.x_test_case_71</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.XTestCase_85Record> {
|
||||
|
||||
private static final long serialVersionUID = 512861757;
|
||||
private static final long serialVersionUID = -328538619;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.x_test_case_85</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord> {
|
||||
|
||||
private static final long serialVersionUID = 2111633917;
|
||||
private static final long serialVersionUID = -719775291;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.x_unused</code>
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TArrays implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1670629373;
|
||||
private static final long serialVersionUID = 471165911;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.String[] stringArray;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TAuthor implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1911886801;
|
||||
private static final long serialVersionUID = -1808466167;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.String firstName;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBook implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1989770278;
|
||||
private static final long serialVersionUID = 1741556148;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.Integer authorId;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBookStore implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -650051332;
|
||||
private static final long serialVersionUID = -631432350;
|
||||
|
||||
private final java.lang.String name;
|
||||
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBookToBookStore implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = 205424336;
|
||||
private static final long serialVersionUID = -1603361738;
|
||||
|
||||
private final java.lang.String bookStoreName;
|
||||
private final java.lang.Integer bookId;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBooleans implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1395390345;
|
||||
private static final long serialVersionUID = -822662063;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final org.jooq.test._.converters.Boolean_10 oneZero;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TDates implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1969272458;
|
||||
private static final long serialVersionUID = -1346074896;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.sql.Date d;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TExoticTypes implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -759528200;
|
||||
private static final long serialVersionUID = -290003502;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.util.UUID uu;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TIdentity implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1708753313;
|
||||
private static final long serialVersionUID = 1488009029;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.Integer val;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TIdentityPk implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1399120875;
|
||||
private static final long serialVersionUID = 1135800827;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.Integer val;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TLanguage implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1165504298;
|
||||
private static final long serialVersionUID = -1697106300;
|
||||
|
||||
private final java.lang.String cd;
|
||||
private final java.lang.String description;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TPgExtensions implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1920512753;
|
||||
private static final long serialVersionUID = 1870319337;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.Object pgInterval;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TTriggers implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1685658027;
|
||||
private static final long serialVersionUID = 1936432261;
|
||||
|
||||
private final java.lang.Integer idGenerated;
|
||||
private final java.lang.Integer id;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_639NumbersTable implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1028156625;
|
||||
private static final long serialVersionUID = 1379404309;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.Short short_;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_725LobTest implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1975646355;
|
||||
private static final long serialVersionUID = 934336199;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final byte[] lob;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_785 implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1405730083;
|
||||
private static final long serialVersionUID = -1992290307;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.String name;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_959 implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1735308969;
|
||||
private static final long serialVersionUID = -1602963919;
|
||||
|
||||
private final org.jooq.test.postgres.generatedclasses.enums.U_959 javaKeywords;
|
||||
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_986_1 implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1182689597;
|
||||
private static final long serialVersionUID = 1824067997;
|
||||
|
||||
private final java.lang.Integer ref;
|
||||
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_986_2 implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1586376355;
|
||||
private static final long serialVersionUID = 298166653;
|
||||
|
||||
private final java.lang.Integer ref;
|
||||
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class VAuthor implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -908703121;
|
||||
private static final long serialVersionUID = -805282487;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.String firstName;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class VBook implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -596956774;
|
||||
private static final long serialVersionUID = -1160597644;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.Integer authorId;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class VLibrary implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1781083161;
|
||||
private static final long serialVersionUID = 191158221;
|
||||
|
||||
private final java.lang.String author;
|
||||
private final java.lang.String title;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XTestCase_2025 implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = 922863272;
|
||||
private static final long serialVersionUID = -809058302;
|
||||
|
||||
private final java.lang.Integer refId;
|
||||
private final java.lang.String refName;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XTestCase_64_69 implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1140500705;
|
||||
private static final long serialVersionUID = -1368158075;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.Integer unusedId;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XTestCase_71 implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1155896811;
|
||||
private static final long serialVersionUID = 1656222033;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.Short testCase_64_69Id;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XTestCase_85 implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -834988732;
|
||||
private static final long serialVersionUID = -1164484182;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.Integer xUnusedId;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class XUnused implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1291613733;
|
||||
private static final long serialVersionUID = -1294856127;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.String name;
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TArraysRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TArraysRecord> implements org.jooq.Record7<java.lang.Integer, java.lang.String[], java.lang.Integer[], java.sql.Date[], org.jooq.test.postgres.generatedclasses.udt.records.UStreetTypeRecord[], org.jooq.test.postgres.generatedclasses.enums.UCountry[], java.lang.Integer[]> {
|
||||
|
||||
private static final long serialVersionUID = 1378808487;
|
||||
private static final long serialVersionUID = -915277753;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_arrays.id</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord> implements org.jooq.Record6<java.lang.Integer, java.lang.String, java.lang.String, java.sql.Date, java.lang.Integer, org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1719530128;
|
||||
private static final long serialVersionUID = 1083418672;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_author.id</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord> implements org.jooq.Record10<java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.String, java.lang.Integer, java.lang.Integer, java.lang.String, byte[], org.jooq.test.postgres.generatedclasses.enums.UBookStatus> {
|
||||
|
||||
private static final long serialVersionUID = 969507808;
|
||||
private static final long serialVersionUID = 130867584;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book.id</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord> implements org.jooq.Record1<java.lang.String> {
|
||||
|
||||
private static final long serialVersionUID = 1667086476;
|
||||
private static final long serialVersionUID = 1086602988;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book_store.name</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord> implements org.jooq.Record3<java.lang.String, java.lang.Integer, java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = -1802937959;
|
||||
private static final long serialVersionUID = -434214919;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book_to_book_store.book_store_name</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TBooleansRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBooleansRecord> implements org.jooq.Record11<java.lang.Integer, org.jooq.test._.converters.Boolean_10, org.jooq.test._.converters.Boolean_TF_LC, org.jooq.test._.converters.Boolean_TF_UC, org.jooq.test._.converters.Boolean_YES_NO_LC, org.jooq.test._.converters.Boolean_YES_NO_UC, org.jooq.test._.converters.Boolean_YN_LC, org.jooq.test._.converters.Boolean_YN_UC, java.lang.Boolean, java.lang.Boolean, java.lang.Boolean> {
|
||||
|
||||
private static final long serialVersionUID = -1078224753;
|
||||
private static final long serialVersionUID = -1928341969;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_booleans.id</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TDatesRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TDatesRecord> implements org.jooq.Record6<java.lang.Integer, java.sql.Date, java.sql.Time, java.sql.Timestamp, java.lang.Integer, java.lang.Long> {
|
||||
|
||||
private static final long serialVersionUID = 1530781322;
|
||||
private static final long serialVersionUID = 355781674;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_dates.id</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TExoticTypesRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TExoticTypesRecord> implements org.jooq.Record2<java.lang.Integer, java.util.UUID> {
|
||||
|
||||
private static final long serialVersionUID = 5983619;
|
||||
private static final long serialVersionUID = -19336221;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_exotic_types.id</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TIdentityPkRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TIdentityPkRecord> implements org.jooq.Record2<java.lang.Integer, java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = 765103701;
|
||||
private static final long serialVersionUID = -138447691;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_identity_pk.id</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TIdentityRecord extends org.jooq.impl.TableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TIdentityRecord> implements org.jooq.Record2<java.lang.Integer, java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = 828521113;
|
||||
private static final long serialVersionUID = -1759248135;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_identity.id</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord> implements org.jooq.Record4<java.lang.String, java.lang.String, java.lang.String, java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = 340103471;
|
||||
private static final long serialVersionUID = -33990769;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_language.cd</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TPgExtensionsRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TPgExtensionsRecord> implements org.jooq.Record5<java.lang.Integer, java.lang.Object, java.lang.Object, java.lang.Object, java.lang.Object> {
|
||||
|
||||
private static final long serialVersionUID = 707768701;
|
||||
private static final long serialVersionUID = -70854883;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_pg_extensions.id</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TTriggersRecord> implements org.jooq.Record3<java.lang.Integer, java.lang.Integer, java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = 1576020682;
|
||||
private static final long serialVersionUID = -915117782;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_triggers.id_generated</code>.
|
||||
|
||||
@ -6,10 +6,10 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@java.lang.SuppressWarnings("all")
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked" })
|
||||
public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.T_639NumbersTableRecord> implements org.jooq.Record12<java.lang.Integer, java.lang.Short, java.lang.Integer, java.lang.Long, java.lang.Byte, java.lang.Short, java.lang.Integer, java.lang.Long, java.math.BigInteger, java.math.BigDecimal, java.lang.Float, java.lang.Double> {
|
||||
|
||||
private static final long serialVersionUID = 2141135819;
|
||||
private static final long serialVersionUID = 140417579;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_639_numbers_table.id</code>.
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user