|
1 | 1 | <!--
|
2 |
| -$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.93 2002/08/17 12:33:17 momjian Exp $ |
| 2 | +$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.94 2002/09/02 20:21:32 tgl Exp $ |
3 | 3 | -->
|
4 | 4 |
|
5 | 5 | <chapter id="libpq">
|
@@ -1653,9 +1653,8 @@ messages can be detected by calling <function>PQnotifies</function>.
|
1653 | 1653 | PGnotify* PQnotifies(PGconn *conn);
|
1654 | 1654 |
|
1655 | 1655 | typedef struct pgNotify {
|
1656 |
| - char relname[NAMEDATALEN]; /* name of relation |
1657 |
| - * containing data */ |
1658 |
| - int be_pid; /* process id of backend */ |
| 1656 | + char *relname; /* name of relation containing data */ |
| 1657 | + int be_pid; /* process id of backend */ |
1659 | 1658 | } PGnotify;
|
1660 | 1659 | </synopsis>
|
1661 | 1660 | After processing a <structname>PGnotify</structname> object returned by <function>PQnotifies</function>,
|
|