diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-10-24 22:09:00 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-10-24 22:09:00 +0000 |
commit | c3086c8f530e7b8319c37d1f0ffa64585eaaeaa9 (patch) | |
tree | db2a30daf3312e06cd0d58975aab91426f9316c1 /src/backend/parser/parse_coerce.c | |
parent | 6b704bf50180e33021b90354994d232f531e70ae (diff) | |
download | postgresql-c3086c8f530e7b8319c37d1f0ffa64585eaaeaa9.tar.gz postgresql-c3086c8f530e7b8319c37d1f0ffa64585eaaeaa9.zip |
Function-call-style type coercions should be treated as explicit
coercions, not implicit ones. For example, 'select abstime(1035497293)'
should succeed because there is an explicit binary coercion from int4
to abstime.
Diffstat (limited to 'src/backend/parser/parse_coerce.c')
-rw-r--r-- | src/backend/parser/parse_coerce.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/backend/parser/parse_coerce.c b/src/backend/parser/parse_coerce.c index c0081133eb3..4870b24de07 100644 --- a/src/backend/parser/parse_coerce.c +++ b/src/backend/parser/parse_coerce.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.84 2002/09/18 21:35:22 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.85 2002/10/24 22:09:00 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -32,9 +32,6 @@ static Node *coerce_type_typmod(Node *node, Oid targetTypeId, int32 targetTypMod, CoercionForm cformat); static Oid PreferredType(CATEGORY category, Oid type); -static bool find_coercion_pathway(Oid targetTypeId, Oid sourceTypeId, - CoercionContext ccontext, - Oid *funcid); static Node *build_func_call(Oid funcid, Oid rettype, List *args, CoercionForm fformat); @@ -910,7 +907,7 @@ IsBinaryCoercible(Oid srctype, Oid targettype) * to the castfunc value (which may be InvalidOid for a binary-compatible * coercion). */ -static bool +bool find_coercion_pathway(Oid targetTypeId, Oid sourceTypeId, CoercionContext ccontext, Oid *funcid) |