]> granicus.if.org Git - postgresql/commitdiff
*** empty log message ***
authorMichael Meskes <meskes@postgresql.org>
Fri, 7 May 1999 18:03:37 +0000 (18:03 +0000)
committerMichael Meskes <meskes@postgresql.org>
Fri, 7 May 1999 18:03:37 +0000 (18:03 +0000)
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/preproc/preproc.y

index 3f58d45c5674c448a082834f70e871ed456bd1fc..732b8bef8e027c05c5d3c09113088d2288c17569 100644 (file)
@@ -569,6 +569,11 @@ Sat Apr 24 12:39:07 CEST 1999
        - Synced preproc.y with gram.y.
        - Allow more than one blank between EXEC and SQL.
        - Allow statements to be prepared from a character string, too.
+
+Fri Mai  7 07:11:38 CEST 1999
+
+       - Synced preproc.y with gram.y.
+       - Fixed small bug in parser.
        - Set library version to 3.0.0
        - Set ecpg version to 2.6.0
 
index 84984acf9430cae6355c1edee72f3741047e4139..a37889553d719bdc331edfd175c2e6a77270efeb 100644 (file)
@@ -3241,16 +3241,16 @@ Typename:  Array opt_array_bounds
                                {
                                        $$ = cat2_str($1, $2.str);
                                }
-               | Character     { $$ = $1; }
                | SETOF Array
                                {
                                        $$ = cat2_str(make1_str("setof"), $2);
                                }
                ;
 
-Array:  Generic
+Array:  Generic                        { $$ = $1; }
                | Datetime      { $$ = $1; }
                | Numeric       { $$ = $1; }
+               | Character     { $$ = $1; }
                ;
 
 Generic:  generic