1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-14 18:42:34 +03:00

Manually apply part of oid patch that didn't apply cleanly.

This commit is contained in:
Bruce Momjian
2002-07-20 05:29:01 +00:00
parent b0f5086e41
commit e36f9cd440

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.78 2002/07/18 23:11:28 petere Exp $ * $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.79 2002/07/20 05:29:01 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -809,7 +809,7 @@ find_typmod_coercion_function(Oid typeId)
!pform->proisagg) !pform->proisagg)
{ {
/* Okay to use it */ /* Okay to use it */
funcid = ftup->t_data->t_oid; funcid = HeapTupleGetOid(ftup);
} }
ReleaseSysCache(ftup); ReleaseSysCache(ftup);
} }