mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
Even after the great date/time consolidation, TypeCategory() was still
a few bricks shy of a load concerning knowing all the date/time types. This is real bad because it interferes with func_select_candidate()'s willingness to disambiguate functions --- func_select_candidate() will punt unless all the available choices have the same type category. I think this whole mechanism needs redesigned, but in the meantime this is a needed patch.
This commit is contained in:
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.30 2000/02/16 17:24:37 thomas Exp $
|
* $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.31 2000/02/20 06:28:42 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -298,12 +298,15 @@ TypeCategory(Oid inType)
|
|||||||
result = NUMERIC_TYPE;
|
result = NUMERIC_TYPE;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case (DATEOID):
|
||||||
|
case (TIMEOID):
|
||||||
case (ABSTIMEOID):
|
case (ABSTIMEOID):
|
||||||
case (TIMESTAMPOID):
|
case (TIMESTAMPOID):
|
||||||
result = DATETIME_TYPE;
|
result = DATETIME_TYPE;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case (RELTIMEOID):
|
case (RELTIMEOID):
|
||||||
|
case (TINTERVALOID):
|
||||||
case (INTERVALOID):
|
case (INTERVALOID):
|
||||||
result = TIMESPAN_TYPE;
|
result = TIMESPAN_TYPE;
|
||||||
break;
|
break;
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
* $Id: pg_type.h,v 1.81 2000/02/16 17:26:07 thomas Exp $
|
* $Id: pg_type.h,v 1.82 2000/02/20 06:28:41 tgl Exp $
|
||||||
*
|
*
|
||||||
* NOTES
|
* NOTES
|
||||||
* the genbki.sh script reads this file and generates .bki
|
* the genbki.sh script reads this file and generates .bki
|
||||||
@ -287,6 +287,7 @@ DESCR("relative, limited-range time interval (Unix delta time)");
|
|||||||
#define RELTIMEOID 703
|
#define RELTIMEOID 703
|
||||||
DATA(insert OID = 704 ( tinterval PGUID 12 47 f b t \054 0 0 tintervalin tintervalout tintervalin tintervalout i _null_ ));
|
DATA(insert OID = 704 ( tinterval PGUID 12 47 f b t \054 0 0 tintervalin tintervalout tintervalin tintervalout i _null_ ));
|
||||||
DESCR("(abstime,abstime), time interval");
|
DESCR("(abstime,abstime), time interval");
|
||||||
|
#define TINTERVALOID 704
|
||||||
DATA(insert OID = 705 ( unknown PGUID -1 -1 f b t \054 0 18 textin textout textin textout i _null_ ));
|
DATA(insert OID = 705 ( unknown PGUID -1 -1 f b t \054 0 18 textin textout textin textout i _null_ ));
|
||||||
DESCR("");
|
DESCR("");
|
||||||
#define UNKNOWNOID 705
|
#define UNKNOWNOID 705
|
||||||
|
Reference in New Issue
Block a user