mirror of
https://github.com/postgres/postgres.git
synced 2025-10-28 11:55:03 +03:00
From: Tatsuo Ishii <t-ishii@sra.co.jp>
Ok. I made patches replacing all of "#if FALSE" or "#if 0" to "#ifdef NOT_USED" for current. I have tested these patches in that the postgres binaries are identical.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Edmund Mergl <E.Mergl@bawue.de>
|
||||
*
|
||||
* $Id: oracle_compat.c,v 1.16 1998/09/01 04:32:45 momjian Exp $
|
||||
* $Id: oracle_compat.c,v 1.17 1999/02/21 03:49:32 scrappy Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -444,7 +444,7 @@ rtrim(text *string, text *set)
|
||||
|
||||
ret = (text *) palloc(VARHDRSZ + m);
|
||||
VARSIZE(ret) = VARHDRSZ + m;
|
||||
#if FALSE
|
||||
#ifdef NOT_USED
|
||||
memcpy(VARDATA(ret), ptr - VARSIZE(ret) + m, m);
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user