mirror of
https://github.com/postgres/postgres.git
synced 2025-07-20 05:03:10 +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:
@ -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
|
||||
|
Reference in New Issue
Block a user