Synced parser
authorMichael Meskes <meskes@postgresql.org>
Thu, 24 Aug 2006 12:31:33 +0000 (12:31 +0000)
committerMichael Meskes <meskes@postgresql.org>
Thu, 24 Aug 2006 12:31:33 +0000 (12:31 +0000)
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/preproc/preproc.y

index 10dda45d763ec1c414c5ce18f0f53bfdbc83f85c..2b827532b1109559b1c1f2f0785a6818fdd2791b 100644 (file)
@@ -2120,5 +2120,6 @@ We 23. Aug 09:32:14 CEST 2006
 Th 24. Aug 11:53:29 CEST 2006
 
        - Fixed of by one variable size.
+       - Synced parser.
        - Set ecpg library version to 5.2.
        - Set ecpg version to 4.2.1.
index d49d3795bc703fcc9a0d5a8bde454382adc8c503..3e7b717086ecbd62edbc0fb6ad7bfc414d3919ea 100644 (file)
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.331 2006/08/24 10:35:58 meskes Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.332 2006/08/24 12:31:33 meskes Exp $ */
 
 /* Copyright comment */
 %{
@@ -1727,6 +1727,8 @@ OptSeqElem:  CACHE NumConst
                        { $$ = make_str("no maxvalue"); }
                | NO MINVALUE
                        { $$ = make_str("no minvalue"); }
+               | OWNED BY any_name
+                       { $$ = cat2_str(make_str("owned by"), $3); }
                | START opt_with NumConst
                        { $$ = cat_str(3, make_str("start"), $2, $3); }
                | RESTART opt_with NumConst