projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f60f43
)
Fix obsolete description of PGnotify struct.
author
Tom Lane
Mon, 2 Sep 2002 20:21:32 +0000
(20:21 +0000)
committer
Tom Lane
Mon, 2 Sep 2002 20:21:32 +0000
(20:21 +0000)
doc/src/sgml/libpq.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/libpq.sgml
b/doc/src/sgml/libpq.sgml
index 4d604b2ad4810dccc9cb6ef372176590176c6a37..d1179fa92fc3fd1c09edc4c1b72b89468a7d45b4 100644
(file)
--- a/
doc/src/sgml/libpq.sgml
+++ b/
doc/src/sgml/libpq.sgml
@@
-1,5
+1,5
@@
@@
-1653,9
+1653,8
@@
messages can be detected by calling
PQnotifies
.
PGnotify* PQnotifies(PGconn *conn);
typedef struct pgNotify {
- char relname[NAMEDATALEN]; /* name of relation
- * containing data */
- int be_pid; /* process id of backend */
+ char *relname; /* name of relation containing data */
+ int be_pid; /* process id of backend */
} PGnotify;
After processing a
PGnotify
object returned by
PQnotifies
,