aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/test/expected/preproc-array_of_struct.c
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2011-01-08 18:35:37 +0100
committerMichael Meskes <meskes@postgresql.org>2011-01-08 23:04:50 +0100
commit833a2b57bcbebda29fc1eb0b98c0d94ae2c31b7b (patch)
tree555132e0014ec18de7fc1a2c286573a3ea1c0a24 /src/interfaces/ecpg/test/expected/preproc-array_of_struct.c
parent7e2f906201c8bb95f7fb17e56b8740c38bda5441 (diff)
downloadpostgresql-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.c2
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"