diff options
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 2ffa6081fe7..eb7bb13d105 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.56 1998/08/25 15:09:31 thomas Exp $ + * $Id: parsenodes.h,v 1.57 1998/08/25 21:37:04 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -441,6 +441,16 @@ typedef struct ListenStmt } ListenStmt; /* ---------------------- + * Unlisten Statement + * ---------------------- + */ +typedef struct UnlistenStmt +{ + NodeTag type; + char *relname; /* relation to unlisten on */ +} UnlistenStmt; + +/* ---------------------- * {Begin|Abort|End} Transaction Statement * ---------------------- */ |