mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-23 19:39:53 +08:00
Fix parsing of create index call
This commit is contained in:
parent
c8fcb38363
commit
d3268ee2ef
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user