1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00
Subject: [PATCHES] Re: [PORTS] AIX 6.1 fixes...

Here are the patches for the two things that wouldn't make it thru the AIX
compiler.  The geo_ops.c change is harmless I believe.  The nbtcompare.c patch
fixes me, but I don't know about any other ports.  Maybe wait on that one
until Vadim decides what to do about the unsigned vs signed chars varlena
issue.
This commit is contained in:
Marc G. Fournier
1997-05-22 00:07:30 +00:00
parent fce2c41b6c
commit 3e871388b5
3 changed files with 20 additions and 2699 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.7 1997/05/19 03:49:39 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.8 1997/05/22 00:07:21 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@ -986,7 +986,8 @@ path_close(PATH *path)
{
PATH *result;
if (PointerIsValid((char *)(result = path_copy(path))))
result = path_copy(path);
if (PointerIsValid((char *)result))
result->closed = TRUE;
return(result);
@ -997,7 +998,8 @@ path_open(PATH *path)
{
PATH *result;
if (PointerIsValid((char *)(result = path_copy(path))))
result = path_copy(path);
if (PointerIsValid((char *)result))
result->closed = FALSE;
return(result);
@ -2639,7 +2641,7 @@ poly_path(POLYGON *poly)
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.7 1997/05/19 03:49:39 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/geo_ops.c,v 1.8 1997/05/22 00:07:21 scrappy Exp $
*
*-------------------------------------------------------------------------
*/