]> granicus.if.org Git - postgresql/commitdiff
Missed adding extra argument to array_recv in a couple of places
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 10 Jul 2005 21:36:21 +0000 (21:36 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 10 Jul 2005 21:36:21 +0000 (21:36 +0000)
(harmless, actually, but let's be tidy).

src/backend/utils/adt/int.c
src/backend/utils/adt/oid.c

index d00a7d166ae1ea075207f05fbb9283ffbb186fa7..d35af1c913a01dbce0cbae9f69eebb511de20e2f 100644 (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 ||
index 4329f07b830a4f0d1ca8925833d0e712701d3276..e9a2c741be2b81cb49cc3aa11bd427459ced9720 100644 (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 ||