diff options
| author | Tom Lane | 2000-10-22 23:32:48 +0000 |
|---|---|---|
| committer | Tom Lane | 2000-10-22 23:32:48 +0000 |
| commit | 9ace03183c56ca3474679bc56316e962d0af4b81 (patch) | |
| tree | fd385e10d8d458985f9410ccc4170ae6fa5acb26 /src/include/nodes | |
| parent | ee28d8b3d509593c980b8cdcc5a8943a429bdc9b (diff) | |
Some small polishing of Mark Hollomon's cleanup of DROP command: might
as well allow DROP multiple INDEX, RULE, TYPE as well. Add missing
CommandCounterIncrement to DROP loop, which could cause trouble otherwise
with multiple DROP of items affecting same catalog entries. Try to
bring a little consistency to various error messages using 'does not exist',
'nonexistent', etc --- I standardized on 'does not exist' since that's
what the vast majority of the existing uses seem to be.
Diffstat (limited to 'src/include/nodes')
| -rw-r--r-- | src/include/nodes/nodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index fe798492c78..43bb8b733ee 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: nodes.h,v 1.78 2000/10/05 19:11:36 tgl Exp $ + * $Id: nodes.h,v 1.79 2000/10/22 23:32:44 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -169,7 +169,7 @@ typedef enum NodeTag T_RemoveAggrStmt, T_RemoveFuncStmt, T_RemoveOperStmt, - T_RemoveStmt, + T_RemoveStmt_XXX, /* not used anymore; this tag# is available */ T_RenameStmt, T_RuleStmt, T_NotifyStmt, |
