diff options
author | Michael Meskes <meskes@postgresql.org> | 2011-01-08 18:35:37 +0100 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2011-01-08 23:04:50 +0100 |
commit | 833a2b57bcbebda29fc1eb0b98c0d94ae2c31b7b (patch) | |
tree | 555132e0014ec18de7fc1a2c286573a3ea1c0a24 /src/interfaces/ecpg/test/expected/preproc-array_of_struct.c | |
parent | 7e2f906201c8bb95f7fb17e56b8740c38bda5441 (diff) | |
download | postgresql-833a2b57bcbebda29fc1eb0b98c0d94ae2c31b7b.tar.gz postgresql-833a2b57bcbebda29fc1eb0b98c0d94ae2c31b7b.zip |
In ecpg's parser removed a fixed length limit for constants defining an array dimension.
Diffstat (limited to 'src/interfaces/ecpg/test/expected/preproc-array_of_struct.c')
-rw-r--r-- | src/interfaces/ecpg/test/expected/preproc-array_of_struct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/test/expected/preproc-array_of_struct.c b/src/interfaces/ecpg/test/expected/preproc-array_of_struct.c index c60bf51d931..5579ed4132e 100644 --- a/src/interfaces/ecpg/test/expected/preproc-array_of_struct.c +++ b/src/interfaces/ecpg/test/expected/preproc-array_of_struct.c @@ -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" |