From 8c3e8a8a0e432b709ad45b452612f744bacf1514 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Sun, 21 Feb 1999 03:49:55 +0000 Subject: From: Tatsuo Ishii 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. --- src/backend/parser/analyze.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/parser/analyze.c') diff --git a/src/backend/parser/analyze.c b/src/backend/parser/analyze.c index 3a06e856a02..f193a98dace 100644 --- a/src/backend/parser/analyze.c +++ b/src/backend/parser/analyze.c @@ -5,7 +5,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: analyze.c,v 1.99 1999/02/13 23:16:51 momjian Exp $ + * $Id: analyze.c,v 1.100 1999/02/21 03:48:59 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -658,7 +658,7 @@ transformCreateStmt(ParseState *pstate, CreateStmt *stmt) break; case CONSTR_UNIQUE: -#if FALSE +#ifdef NOT_USED if (constraint->name == NULL) constraint->name = makeTableName(stmt->relname, "key", NULL); #endif -- cgit v1.2.3