diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-05-09 17:46:11 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-05-09 17:46:11 +0000 |
commit | b0546a25547f22c44bbaba7bb7f0ef663bb23ffd (patch) | |
tree | 1d49866292329a374aed7ed3d880f1dbf5600bf4 /doc/src | |
parent | 9668b948f7a8f24b5cf05c114710e23ab146d464 (diff) | |
download | postgresql-b0546a25547f22c44bbaba7bb7f0ef663bb23ffd.tar.gz postgresql-b0546a25547f22c44bbaba7bb7f0ef663bb23ffd.zip |
Fix libpq++'s FieldSize to return int, not short.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/libpq++.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/libpq++.sgml b/doc/src/sgml/libpq++.sgml index d4b53557ddc..2bcb5003f0e 100644 --- a/doc/src/sgml/libpq++.sgml +++ b/doc/src/sgml/libpq++.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.29 2001/05/09 17:29:09 momjian Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.30 2001/05/09 17:46:11 momjian Exp $ --> <chapter id="libpqplusplus"> @@ -430,7 +430,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.29 2001/05/09 17:29: Returns the size in bytes of the field associated with the given field index. Field indices start at 0. <synopsis> - short PgDatabase::FieldSize(int field_num) const + int PgDatabase::FieldSize(int field_num) const </synopsis> Returns the space allocated for this field in a database tuple given the field number. In other words the size of the server's binary @@ -444,7 +444,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.29 2001/05/09 17:29: Returns the size in bytes of the field associated with the given field index. Field indices start at 0. <synopsis> - short PgDatabase::FieldSize(const char *field_name) const + int PgDatabase::FieldSize(const char *field_name) const </synopsis> Returns the space allocated for this field in a database tuple given the field name. In other words the size of the server's binary |