diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/commands/async.h | 4 | ||||
-rw-r--r-- | src/include/libpq/pqformat.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/include/commands/async.h b/src/include/commands/async.h index b4c13fac4a..95559df19f 100644 --- a/src/include/commands/async.h +++ b/src/include/commands/async.h @@ -28,6 +28,10 @@ extern volatile sig_atomic_t notifyInterruptPending; extern Size AsyncShmemSize(void); extern void AsyncShmemInit(void); +extern void NotifyMyFrontEnd(const char *channel, + const char *payload, + int32 srcPid); + /* notify-related SQL statements */ extern void Async_Notify(const char *channel, const char *payload); extern void Async_Listen(const char *channel); diff --git a/src/include/libpq/pqformat.h b/src/include/libpq/pqformat.h index 65ebf37fbc..3c0d4b2622 100644 --- a/src/include/libpq/pqformat.h +++ b/src/include/libpq/pqformat.h @@ -44,6 +44,7 @@ extern const char *pq_getmsgbytes(StringInfo msg, int datalen); extern void pq_copymsgbytes(StringInfo msg, char *buf, int datalen); extern char *pq_getmsgtext(StringInfo msg, int rawbytes, int *nbytes); extern const char *pq_getmsgstring(StringInfo msg); +extern const char *pq_getmsgrawstring(StringInfo msg); extern void pq_getmsgend(StringInfo msg); #endif /* PQFORMAT_H */ |