From 463f1f5cdaecf229dcd1d3d16e969bf3a7aa9a73 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 1 Aug 2000 18:29:35 +0000 Subject: Convert all remaining float4 and float8 functions to new fmgr style. At this point I think it'd be possible to make float4 be pass-by-value without too much work --- and float8 too on machines where Datum is 8 bytes. Something to try when the mood strikes, anyway. --- src/backend/utils/adt/oid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/utils/adt/oid.c') diff --git a/src/backend/utils/adt/oid.c b/src/backend/utils/adt/oid.c index a51eadfc5e..6ae7d48d2c 100644 --- a/src/backend/utils/adt/oid.c +++ b/src/backend/utils/adt/oid.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/oid.c,v 1.37 2000/07/03 23:09:52 wieck Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/oid.c,v 1.38 2000/08/01 18:29:35 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -79,7 +79,7 @@ oidvectorout(PG_FUNCTION_ARGS) { if (num != 0) *rp++ = ' '; - ltoa(oidArray[num], rp); + pg_ltoa((int32) oidArray[num], rp); while (*++rp != '\0') ; } -- cgit v1.2.1