diff options
Diffstat (limited to 'src/backend/parser/parse_node.c')
-rw-r--r-- | src/backend/parser/parse_node.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/parser/parse_node.c b/src/backend/parser/parse_node.c index 00b4c8e513e..c46c27481a5 100644 --- a/src/backend/parser/parse_node.c +++ b/src/backend/parser/parse_node.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/parser/parse_node.c,v 1.82 2003/11/29 19:51:52 pgsql Exp $ + * $PostgreSQL: pgsql/src/backend/parser/parse_node.c,v 1.83 2004/05/26 04:41:30 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -106,7 +106,7 @@ transformArraySubscripts(ParseState *pstate, bool isSlice = forceSlice; List *upperIndexpr = NIL; List *lowerIndexpr = NIL; - List *idx; + ListCell *idx; ArrayRef *aref; /* Get the type tuple for the array */ |