[#1156] Bad inlining of DATE / TIME / TIMESTAMP data types in Ingres (and other dialects, when the setting differs from the default) - Fixed Sybase test case
This commit is contained in:
parent
5709eb5add
commit
46359a4950
@ -58,11 +58,11 @@ CREATE TABLE t_identity (
|
||||
|
||||
CREATE TABLE t_dates (
|
||||
id int,
|
||||
d date,
|
||||
t time,
|
||||
ts timestamp,
|
||||
d_int int,
|
||||
ts_bigint bigint,
|
||||
d date null,
|
||||
t time null,
|
||||
ts datetime null,
|
||||
d_int int null,
|
||||
ts_bigint bigint null,
|
||||
|
||||
CONSTRAINT pk_t_dates PRIMARY KEY (id)
|
||||
)
|
||||
|
||||
@ -11,7 +11,7 @@ package org.jooq.test.sybase.generatedclasses;
|
||||
public final class Routines {
|
||||
|
||||
/**
|
||||
* Invoke F_AUTHOR_EXISTS
|
||||
* Call dba.f_author_exists
|
||||
*
|
||||
* @param authorName
|
||||
* @throws org.jooq.exception.DataAccessException if something went wrong executing the query
|
||||
@ -25,7 +25,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get F_AUTHOR_EXISTS as a field
|
||||
* Get dba.f_author_exists as a field
|
||||
*
|
||||
* @param authorName
|
||||
*/
|
||||
@ -37,7 +37,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get F_AUTHOR_EXISTS as a field
|
||||
* Get dba.f_author_exists as a field
|
||||
*
|
||||
* @param authorName
|
||||
*/
|
||||
@ -49,7 +49,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Invoke F_NUMBER
|
||||
* Call dba.f_number
|
||||
*
|
||||
* @param n
|
||||
* @throws org.jooq.exception.DataAccessException if something went wrong executing the query
|
||||
@ -63,7 +63,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get F_NUMBER as a field
|
||||
* Get dba.f_number as a field
|
||||
*
|
||||
* @param n
|
||||
*/
|
||||
@ -75,7 +75,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get F_NUMBER as a field
|
||||
* Get dba.f_number as a field
|
||||
*
|
||||
* @param n
|
||||
*/
|
||||
@ -87,7 +87,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Invoke F_ONE
|
||||
* Call dba.f_one
|
||||
*
|
||||
* @throws org.jooq.exception.DataAccessException if something went wrong executing the query
|
||||
*/
|
||||
@ -99,7 +99,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get F_ONE as a field
|
||||
* Get dba.f_one as a field
|
||||
*
|
||||
*/
|
||||
public static org.jooq.Field<java.lang.Integer> fOne() {
|
||||
@ -109,7 +109,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Invoke F317
|
||||
* Call dba.f317
|
||||
*
|
||||
* @param p1
|
||||
* @param p2
|
||||
@ -129,7 +129,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get F317 as a field
|
||||
* Get dba.f317 as a field
|
||||
*
|
||||
* @param p1
|
||||
* @param p2
|
||||
@ -147,7 +147,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get F317 as a field
|
||||
* Get dba.f317 as a field
|
||||
*
|
||||
* @param p1
|
||||
* @param p2
|
||||
@ -165,7 +165,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Invoke P_AUTHOR_EXISTS
|
||||
* Call dba.p_author_exists
|
||||
*
|
||||
* @param authorName IN parameter
|
||||
* @param result OUT parameter
|
||||
@ -180,7 +180,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Invoke P_CREATE_AUTHOR
|
||||
* Call dba.p_create_author
|
||||
*
|
||||
* @throws org.jooq.exception.DataAccessException if something went wrong executing the query
|
||||
*/
|
||||
@ -191,7 +191,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Invoke P_CREATE_AUTHOR_BY_NAME
|
||||
* Call dba.p_create_author_by_name
|
||||
*
|
||||
* @param pFirstName IN parameter
|
||||
* @param pLastName IN parameter
|
||||
@ -206,7 +206,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Invoke P_UNUSED
|
||||
* Call dba.p_unused
|
||||
*
|
||||
* @param in1 IN parameter
|
||||
* @param out1 OUT parameter
|
||||
@ -223,7 +223,7 @@ public final class Routines {
|
||||
}
|
||||
|
||||
/**
|
||||
* Invoke P391
|
||||
* Call dba.p391
|
||||
*
|
||||
* @param i1 IN parameter
|
||||
* @param io1 IN OUT parameter
|
||||
|
||||
@ -10,10 +10,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class TAuthor extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.TAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -2099140913;
|
||||
private static final long serialVersionUID = -904632508;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_author
|
||||
* The singleton instance of dba.t_author
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.TAuthor T_AUTHOR = new org.jooq.test.sybase.generatedclasses.tables.TAuthor();
|
||||
|
||||
|
||||
@ -10,10 +10,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class TBook extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.TBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1966576210;
|
||||
private static final long serialVersionUID = 1039315993;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_book
|
||||
* The singleton instance of dba.t_book
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.TBook T_BOOK = new org.jooq.test.sybase.generatedclasses.tables.TBook();
|
||||
|
||||
|
||||
@ -10,10 +10,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class TBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.TBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 296825376;
|
||||
private static final long serialVersionUID = -824330613;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_book_store
|
||||
* The singleton instance of dba.t_book_store
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.TBookStore T_BOOK_STORE = new org.jooq.test.sybase.generatedclasses.tables.TBookStore();
|
||||
|
||||
|
||||
@ -10,10 +10,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class TBookToBookStore extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.TBookToBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 273958484;
|
||||
private static final long serialVersionUID = 1859629119;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_book_to_book_store
|
||||
* The singleton instance of dba.t_book_to_book_store
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.TBookToBookStore T_BOOK_TO_BOOK_STORE = new org.jooq.test.sybase.generatedclasses.tables.TBookToBookStore();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class TBooleans extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.TBooleansRecord> {
|
||||
|
||||
private static final long serialVersionUID = 76909220;
|
||||
private static final long serialVersionUID = -2062944753;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_booleans
|
||||
* The singleton instance of dba.t_booleans
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.TBooleans T_BOOLEANS = new org.jooq.test.sybase.generatedclasses.tables.TBooleans();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class TDates extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.TDatesRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1199895056;
|
||||
private static final long serialVersionUID = 279799301;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_dates
|
||||
* The singleton instance of dba.t_dates
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.TDates T_DATES = new org.jooq.test.sybase.generatedclasses.tables.TDates();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class TIdentity extends org.jooq.impl.TableImpl<org.jooq.test.sybase.generatedclasses.tables.records.TIdentityRecord> {
|
||||
|
||||
private static final long serialVersionUID = -586705259;
|
||||
private static final long serialVersionUID = -2026370166;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_identity
|
||||
* The singleton instance of dba.t_identity
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.TIdentity T_IDENTITY = new org.jooq.test.sybase.generatedclasses.tables.TIdentity();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class TIdentityPk extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.TIdentityPkRecord> {
|
||||
|
||||
private static final long serialVersionUID = 2095323875;
|
||||
private static final long serialVersionUID = -420620200;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_identity_pk
|
||||
* The singleton instance of dba.t_identity_pk
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.TIdentityPk T_IDENTITY_PK = new org.jooq.test.sybase.generatedclasses.tables.TIdentityPk();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class TTriggers extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.TTriggersRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1570806775;
|
||||
private static final long serialVersionUID = -1829091458;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_triggers
|
||||
* The singleton instance of dba.t_triggers
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.TTriggers T_TRIGGERS = new org.jooq.test.sybase.generatedclasses.tables.TTriggers();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class T_639NumbersTable extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.T_639NumbersTableRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1590781037;
|
||||
private static final long serialVersionUID = -258425886;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_639_numbers_table
|
||||
* The singleton instance of dba.t_639_numbers_table
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.T_639NumbersTable T_639_NUMBERS_TABLE = new org.jooq.test.sybase.generatedclasses.tables.T_639NumbersTable();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class T_658Ref extends org.jooq.impl.TableImpl<org.jooq.test.sybase.generatedclasses.tables.records.T_658RefRecord> {
|
||||
|
||||
private static final long serialVersionUID = -672604784;
|
||||
private static final long serialVersionUID = 116905659;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_658_ref
|
||||
* The singleton instance of dba.t_658_ref
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.T_658Ref T_658_REF = new org.jooq.test.sybase.generatedclasses.tables.T_658Ref();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class T_725LobTest extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.T_725LobTestRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1982914918;
|
||||
private static final long serialVersionUID = 1122388635;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_725_lob_test
|
||||
* The singleton instance of dba.t_725_lob_test
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.T_725LobTest T_725_LOB_TEST = new org.jooq.test.sybase.generatedclasses.tables.T_725LobTest();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class T_785 extends org.jooq.impl.TableImpl<org.jooq.test.sybase.generatedclasses.tables.records.T_785Record> {
|
||||
|
||||
private static final long serialVersionUID = 1549798625;
|
||||
private static final long serialVersionUID = -517082986;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_785
|
||||
* The singleton instance of dba.t_785
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.T_785 T_785 = new org.jooq.test.sybase.generatedclasses.tables.T_785();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class T_986_1 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.T_986_1Record> {
|
||||
|
||||
private static final long serialVersionUID = -294586837;
|
||||
private static final long serialVersionUID = 556188502;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_986_1
|
||||
* The singleton instance of dba.t_986_1
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.T_986_1 T_986_1 = new org.jooq.test.sybase.generatedclasses.tables.T_986_1();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class T_986_2 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.T_986_2Record> {
|
||||
|
||||
private static final long serialVersionUID = -1567619606;
|
||||
private static final long serialVersionUID = 1008739349;
|
||||
|
||||
/**
|
||||
* The singleton instance of t_986_2
|
||||
* The singleton instance of dba.t_986_2
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.T_986_2 T_986_2 = new org.jooq.test.sybase.generatedclasses.tables.T_986_2();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class VAuthor extends org.jooq.impl.TableImpl<org.jooq.test.sybase.generatedclasses.tables.records.VAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = 844410366;
|
||||
private static final long serialVersionUID = 1743486889;
|
||||
|
||||
/**
|
||||
* The singleton instance of v_author
|
||||
* The singleton instance of dba.v_author
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.VAuthor V_AUTHOR = new org.jooq.test.sybase.generatedclasses.tables.VAuthor();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class VBook extends org.jooq.impl.TableImpl<org.jooq.test.sybase.generatedclasses.tables.records.VBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = 943944089;
|
||||
private static final long serialVersionUID = 879945540;
|
||||
|
||||
/**
|
||||
* The singleton instance of v_book
|
||||
* The singleton instance of dba.v_book
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.VBook V_BOOK = new org.jooq.test.sybase.generatedclasses.tables.VBook();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class VLibrary extends org.jooq.impl.TableImpl<org.jooq.test.sybase.generatedclasses.tables.records.VLibraryRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1492663498;
|
||||
private static final long serialVersionUID = 1712639541;
|
||||
|
||||
/**
|
||||
* The singleton instance of V_LIBRARY
|
||||
* The singleton instance of dba.V_LIBRARY
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.VLibrary V_LIBRARY = new org.jooq.test.sybase.generatedclasses.tables.VLibrary();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class XTestCase_64_69 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.XTestCase_64_69Record> {
|
||||
|
||||
private static final long serialVersionUID = 953707622;
|
||||
private static final long serialVersionUID = 1325597275;
|
||||
|
||||
/**
|
||||
* The singleton instance of x_test_case_64_69
|
||||
* The singleton instance of dba.x_test_case_64_69
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.XTestCase_64_69 X_TEST_CASE_64_69 = new org.jooq.test.sybase.generatedclasses.tables.XTestCase_64_69();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class XTestCase_71 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.XTestCase_71Record> {
|
||||
|
||||
private static final long serialVersionUID = -418533254;
|
||||
private static final long serialVersionUID = -1003613275;
|
||||
|
||||
/**
|
||||
* The singleton instance of x_test_case_71
|
||||
* The singleton instance of dba.x_test_case_71
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.XTestCase_71 X_TEST_CASE_71 = new org.jooq.test.sybase.generatedclasses.tables.XTestCase_71();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class XTestCase_85 extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.XTestCase_85Record> {
|
||||
|
||||
private static final long serialVersionUID = -1783440814;
|
||||
private static final long serialVersionUID = 912272135;
|
||||
|
||||
/**
|
||||
* The singleton instance of x_test_case_85
|
||||
* The singleton instance of dba.x_test_case_85
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.XTestCase_85 X_TEST_CASE_85 = new org.jooq.test.sybase.generatedclasses.tables.XTestCase_85();
|
||||
|
||||
|
||||
@ -8,10 +8,10 @@ package org.jooq.test.sybase.generatedclasses.tables;
|
||||
*/
|
||||
public class XUnused extends org.jooq.impl.UpdatableTableImpl<org.jooq.test.sybase.generatedclasses.tables.records.XUnusedRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1576899745;
|
||||
private static final long serialVersionUID = 1725346764;
|
||||
|
||||
/**
|
||||
* The singleton instance of x_unused
|
||||
* The singleton instance of dba.x_unused
|
||||
*/
|
||||
public static final org.jooq.test.sybase.generatedclasses.tables.XUnused X_UNUSED = new org.jooq.test.sybase.generatedclasses.tables.XUnused();
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user