Missed adding extra argument to array_recv in a couple of places

(harmless, actually, but let's be tidy).
This commit is contained in:
Tom Lane 2005-07-10 21:36:21 +00:00
parent d78397d301
commit 8826fe859f
2 changed files with 8 additions and 6 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/int.c,v 1.66 2005/03/29 00:17:08 tgl Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/int.c,v 1.67 2005/07/10 21:36:21 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -215,9 +215,10 @@ int2vectorrecv(PG_FUNCTION_ARGS)
int2vector *result;
result = (int2vector *)
DatumGetPointer(DirectFunctionCall2(array_recv,
DatumGetPointer(DirectFunctionCall3(array_recv,
PointerGetDatum(buf),
ObjectIdGetDatum(INT2OID)));
ObjectIdGetDatum(INT2OID),
Int32GetDatum(-1)));
/* sanity checks: int2vector must be 1-D, no nulls */
if (result->ndim != 1 ||
result->flags != 0 ||

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/adt/oid.c,v 1.62 2005/03/29 00:17:08 tgl Exp $
* $PostgreSQL: pgsql/src/backend/utils/adt/oid.c,v 1.63 2005/07/10 21:36:21 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -257,9 +257,10 @@ oidvectorrecv(PG_FUNCTION_ARGS)
oidvector *result;
result = (oidvector *)
DatumGetPointer(DirectFunctionCall2(array_recv,
DatumGetPointer(DirectFunctionCall3(array_recv,
PointerGetDatum(buf),
ObjectIdGetDatum(OIDOID)));
ObjectIdGetDatum(OIDOID),
Int32GetDatum(-1)));
/* sanity checks: oidvector must be 1-D, no nulls */
if (result->ndim != 1 ||
result->flags != 0 ||