Skip to content

Commit e96df81

Browse files
author
Michael Meskes
committed
Synced parser
1 parent 8d9cf79 commit e96df81

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/interfaces/ecpg/ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2120,5 +2120,6 @@ We 23. Aug 09:32:14 CEST 2006
21202120
Th 24. Aug 11:53:29 CEST 2006
21212121

21222122
- Fixed of by one variable size.
2123+
- Synced parser.
21232124
- Set ecpg library version to 5.2.
21242125
- Set ecpg version to 4.2.1.

src/interfaces/ecpg/preproc/preproc.y

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.331 2006/08/24 10:35:58 meskes Exp $ */
1+
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.332 2006/08/24 12:31:33 meskes Exp $ */
22

33
/* Copyright comment */
44
%{
@@ -1727,6 +1727,8 @@ OptSeqElem: CACHE NumConst
17271727
{ $$ = make_str("no maxvalue"); }
17281728
| NO MINVALUE
17291729
{ $$ = make_str("no minvalue"); }
1730+
| OWNED BY any_name
1731+
{ $$ = cat2_str(make_str("owned by"), $3); }
17301732
| START opt_with NumConst
17311733
{ $$ = cat_str(3, make_str("start"), $2, $3); }
17321734
| RESTART opt_with NumConst

0 commit comments

Comments
 (0)