summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian1996-10-13 17:13:58 +0000
committerBruce Momjian1996-10-13 17:13:58 +0000
commitd31909be6ce6bd8292659cd81a3e7dd7cfd928b6 (patch)
tree6e951020de78ffffaf61ccbf937b33b19f5c865a
parent44bf483446d49459e8bccb74bce2ea9575939766 (diff)
Fix structure member name from previous patch.
-rw-r--r--src/include/parser/parse_state.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/parser/parse_state.h b/src/include/parser/parse_state.h
index e3bba8ee98..a897784c18 100644
--- a/src/include/parser/parse_state.h
+++ b/src/include/parser/parse_state.h
@@ -4,7 +4,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: parse_state.h,v 1.2 1996/10/13 04:26:39 momjian Exp $
+ * $Id: parse_state.h,v 1.3 1996/10/13 17:13:58 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,7 +16,7 @@
typedef struct ParseState {
int p_last_resno;
List *p_target_resnos;
- Relation p_parser_current_rel;
+ Relation p_current_rel;
List *p_rtable;
int p_query_is_rule;
int p_numAgg;