diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-08-25 21:37:08 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-08-25 21:37:08 +0000 |
commit | f62d1253eff4622f6ff0b76f8f0f2eca793bd608 (patch) | |
tree | e28e49785256ce9f46f924bc518b0dfeda0d80a6 /src/include/commands/async.h | |
parent | 7414d619507ed9e2cdb5113ff77df55feef786c4 (diff) | |
download | postgresql-f62d1253eff4622f6ff0b76f8f0f2eca793bd608.tar.gz postgresql-f62d1253eff4622f6ff0b76f8f0f2eca793bd608.zip |
From: Massimo Dal Zotto <dz@cs.unitn.it>
> these patches define the UNLISTEN sql command. The code already
> existed but it was unknown to the parser. Now it can be used
> like the listen command.
> You must make clean and delete gram.c and parser.h before make.
Diffstat (limited to 'src/include/commands/async.h')
-rw-r--r-- | src/include/commands/async.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/commands/async.h b/src/include/commands/async.h index 498cec4fbfd..bf92a27ee54 100644 --- a/src/include/commands/async.h +++ b/src/include/commands/async.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: async.h,v 1.7 1997/09/08 02:35:37 momjian Exp $ + * $Id: async.h,v 1.8 1998/08/25 21:37:00 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -20,6 +20,7 @@ extern void Async_Notify(char *relname); extern void Async_NotifyAtCommit(void); extern void Async_NotifyAtAbort(void); extern void Async_Listen(char *relname, int pid); +extern void Async_Unlisten(char *relname, int pid); extern GlobalMemory notifyContext; |