diff options
| author | Robert Haas <rhaas@postgresql.org> | 2010-08-11 18:52:12 +0000 | 
|---|---|---|
| committer | Robert Haas <rhaas@postgresql.org> | 2010-08-11 18:52:12 +0000 | 
| commit | 5eac6a9ac0108f988bc10b3303318a7335d0c7c7 (patch) | |
| tree | 56a6434f3d348649249be4ed2a1c05b3d8b5f6d7 | |
| parent | efb49d5bea3630c66150e10dda4e9d5a48553de4 (diff) | |
Fix incorrect errno definitions in ECPG manual.
ecpgerrno.h hasn't materially changed since PostgreSQL 7.4, so this has
been wrong for a very long time.  Back-patch all the way.
Satoshi Nagayasu
| -rw-r--r-- | doc/src/sgml/ecpg.sgml | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml index 85a2d0b1ff3..d835d8f14dd 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/ecpg.sgml,v 1.100.2.1 2010/07/29 19:34:36 petere Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/ecpg.sgml,v 1.100.2.2 2010/08/11 18:52:12 rhaas Exp $ -->  <chapter id="ecpg">   <title><application>ECPG</application> - Embedded <acronym>SQL</acronym> in C</title> @@ -4894,7 +4894,7 @@ struct      </varlistentry>      <varlistentry> -     <term>-208 (<symbol>ECPG_EMPTY</symbol>)</term> +     <term>-212 (<symbol>ECPG_EMPTY</symbol>)</term>       <listitem>        <para>         The statement sent to the <productname>PostgreSQL</productname> @@ -4906,7 +4906,7 @@ struct      </varlistentry>      <varlistentry> -     <term>-209 (<symbol>ECPG_MISSING_INDICATOR</symbol>)</term> +     <term>-213 (<symbol>ECPG_MISSING_INDICATOR</symbol>)</term>       <listitem>        <para>         A null value was returned and no null indicator variable was @@ -4916,7 +4916,7 @@ struct      </varlistentry>      <varlistentry> -     <term>-210 (<symbol>ECPG_NO_ARRAY</symbol>)</term> +     <term>-214 (<symbol>ECPG_NO_ARRAY</symbol>)</term>       <listitem>        <para>         An ordinary variable was used in a place that requires an @@ -4926,7 +4926,7 @@ struct      </varlistentry>      <varlistentry> -     <term>-211 (<symbol>ECPG_DATA_NOT_ARRAY</symbol>)</term> +     <term>-215 (<symbol>ECPG_DATA_NOT_ARRAY</symbol>)</term>       <listitem>        <para>         The database returned an ordinary variable in a place that  | 
