From: Michael Meskes Date: Wed, 27 Nov 2013 10:03:59 +0000 (+0100) Subject: Documentation fix for ecpg. X-Git-Tag: REL9_4_BETA1~883 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2390f2b2d3ef708c282846457b6fd837a0c08061;p=thirdparty%2Fpostgresql.git Documentation fix for ecpg. The latest fixes removed a limitation that was still in the docs, so Zoltan updated the docs, too. --- diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml index 120d760ba21..f9536ee1e49 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -944,20 +944,6 @@ struct varchar_var { int len; char arr[180]; } var; is used. - - Two or more VARCHAR host variables cannot be defined - in single line statement. The following code will confuse - the ecpg preprocessor: - -VARCHAR v1[128], v2[128]; /* WRONG */ - - Two variables should be defined in separate statements like this: - -VARCHAR v1[128]; -VARCHAR v2[128]; - - - VARCHAR can be written in upper or lower case, but not in mixed case.