File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -2120,5 +2120,6 @@ We 23. Aug 09:32:14 CEST 2006
2120
2120
Th 24. Aug 11:53:29 CEST 2006
2121
2121
2122
2122
- Fixed of by one variable size.
2123
+ - Synced parser.
2123
2124
- Set ecpg library version to 5.2.
2124
2125
- Set ecpg version to 4.2.1.
Original file line number Diff line number Diff line change 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 $ */
2
2
3
3
/* Copyright comment */
4
4
%{
@@ -1727,6 +1727,8 @@ OptSeqElem: CACHE NumConst
1727
1727
{ $$ = make_str(" no maxvalue" ); }
1728
1728
| NO MINVALUE
1729
1729
{ $$ = make_str(" no minvalue" ); }
1730
+ | OWNED BY any_name
1731
+ { $$ = cat2_str(make_str(" owned by" ), $3 ); }
1730
1732
| START opt_with NumConst
1731
1733
{ $$ = cat_str(3 , make_str(" start" ), $2 , $3 ); }
1732
1734
| RESTART opt_with NumConst
You can’t perform that action at this time.
0 commit comments