Fix parsing of create index call

This commit is contained in:
Michael Meskes 2003-11-08 19:14:20 +00:00
parent c8fcb38363
commit d3268ee2ef

View File

@ -1,4 +1,4 @@
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.263 2003/10/22 16:43:42 tgl Exp $ */
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.263.2.1 2003/11/08 19:14:20 meskes Exp $ */
/* Copyright comment */
%{
@ -2056,7 +2056,7 @@ access_method_clause: USING access_method
;
index_params: index_elem { $$ = $1; }
| index_params ',' index_elem { $$ = $1; }
| index_params ',' index_elem { $$ = cat_str(3, $1, make_str(","), $3); }
;
index_elem: attr_name opt_class