mirror of
https://github.com/postgres/postgres.git
synced 2025-04-27 22:56:53 +03:00
*** empty log message ***
This commit is contained in:
parent
ef26ad2ebd
commit
e18c912acf
@ -569,6 +569,11 @@ Sat Apr 24 12:39:07 CEST 1999
|
|||||||
- Synced preproc.y with gram.y.
|
- Synced preproc.y with gram.y.
|
||||||
- Allow more than one blank between EXEC and SQL.
|
- Allow more than one blank between EXEC and SQL.
|
||||||
- Allow statements to be prepared from a character string, too.
|
- 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 library version to 3.0.0
|
||||||
- Set ecpg version to 2.6.0
|
- Set ecpg version to 2.6.0
|
||||||
|
|
||||||
|
@ -3241,16 +3241,16 @@ Typename: Array opt_array_bounds
|
|||||||
{
|
{
|
||||||
$$ = cat2_str($1, $2.str);
|
$$ = cat2_str($1, $2.str);
|
||||||
}
|
}
|
||||||
| Character { $$ = $1; }
|
|
||||||
| SETOF Array
|
| SETOF Array
|
||||||
{
|
{
|
||||||
$$ = cat2_str(make1_str("setof"), $2);
|
$$ = cat2_str(make1_str("setof"), $2);
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
||||||
Array: Generic
|
Array: Generic { $$ = $1; }
|
||||||
| Datetime { $$ = $1; }
|
| Datetime { $$ = $1; }
|
||||||
| Numeric { $$ = $1; }
|
| Numeric { $$ = $1; }
|
||||||
|
| Character { $$ = $1; }
|
||||||
;
|
;
|
||||||
|
|
||||||
Generic: generic
|
Generic: generic
|
||||||
|
Loading…
x
Reference in New Issue
Block a user