1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00

In ecpg's parser removed a fixed length limit for constants defining an array dimension.

This commit is contained in:
Michael Meskes
2011-01-08 18:35:37 +01:00
parent 7e2f906201
commit 833a2b57bc
2 changed files with 5 additions and 5 deletions

View File

@ -114,7 +114,7 @@ int main()
int r ;
#line 45 "array_of_struct.pgc"
struct varchar_onlyname_5 { int len; char arr[ 50 ]; } onlyname [2] ;
struct varchar_onlyname_5 { int len; char arr[ 50 ]; } onlyname [ 2 ] ;
/* exec sql end declare section */
#line 46 "array_of_struct.pgc"