1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-06 07:49:08 +03:00

Remove NULL_PATCH define

This commit is contained in:
Bruce Momjian
1996-11-04 04:35:48 +00:00
parent 8edbc3bde4
commit 0108fddf13
5 changed files with 4 additions and 17 deletions

View File

@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/Attic/parse_query.c,v 1.5 1996/10/30 02:01:59 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/Attic/parse_query.c,v 1.6 1996/11/04 04:35:42 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -651,11 +651,7 @@ make_const(Value *value)
/* null const */
con = makeConst(0, 0, (Datum)NULL, TRUE, 0, FALSE);
#ifdef NULL_PATCH
return con;
#else
return NULL /*con*/;
#endif
}
}