Commit 16620abe authored by Tom Lane's avatar Tom Lane

Removed unused var to silence gcc warning.

parent 72786e04
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.68 2000/02/04 18:49:31 wieck Exp $ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.69 2000/02/15 18:15:12 tgl Exp $
* *
* NOTES * NOTES
* The PortalExecutorHeapMemory crap needs to be eliminated * The PortalExecutorHeapMemory crap needs to be eliminated
...@@ -699,7 +699,7 @@ AlterTableAddConstraint(const char *relationName, ...@@ -699,7 +699,7 @@ AlterTableAddConstraint(const char *relationName,
case T_FkConstraint: case T_FkConstraint:
{ {
FkConstraint *fkconstraint=(FkConstraint *)newConstraint; FkConstraint *fkconstraint=(FkConstraint *)newConstraint;
Relation rel, classrel; Relation rel;
HeapScanDesc scan; HeapScanDesc scan;
HeapTuple tuple; HeapTuple tuple;
Trigger trig; Trigger trig;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment