diff options
author | Michael Meskes <meskes@postgresql.org> | 2017-04-11 12:41:06 +0200 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2017-04-11 12:41:06 +0200 |
commit | a6940bdcb9ef87a54459deac5699a61cfdbc696c (patch) | |
tree | 9f8cdc1d3d3ccacb2b124496ec0fd5d8fa0e6f53 | |
parent | 3820c63da8d0e59e2bd4476e91968f03be5dd041 (diff) | |
download | postgresql-a6940bdcb9ef87a54459deac5699a61cfdbc696c.tar.gz postgresql-a6940bdcb9ef87a54459deac5699a61cfdbc696c.zip |
Document that bytea is best represented as char * in C for ecpg.
Patch by Kato, Sho <kato-sho@jp.fujitsu.com>
-rw-r--r-- | doc/src/sgml/ecpg.sgml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml index 564bd321441..dead4c3f869 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -919,6 +919,11 @@ do <entry><type>boolean</type></entry> <entry><type>bool</type><footnote><para>declared in <filename>ecpglib.h</filename> if not native</para></footnote></entry> </row> + + <row> + <entry><type>bytea</type></entry> + <entry><type>char *</type></entry> + </row> </tbody> </tgroup> </table> |