summaryrefslogtreecommitdiff
path: root/src/include/nodes
diff options
context:
space:
mode:
authorPeter Eisentraut2000-11-24 20:16:40 +0000
committerPeter Eisentraut2000-11-24 20:16:40 +0000
commit5b00ea9e50332882a46f7302a0c1db1f609a4c0b (patch)
treeefbc41b375b1a409d846ff74abcf7bb7afd8d517 /src/include/nodes
parentf1ddc19b10b081d0900c4fdee220f2b8a85b062f (diff)
Make SET SESSION CHARACTERISTICS compliant with SQL 99. Remove redundant,
non-standard clauses. Allow CHARACTERISTICS as unquoted identifier. Merge related reference pages.
Diffstat (limited to 'src/include/nodes')
-rw-r--r--src/include/nodes/nodes.h3
-rw-r--r--src/include/nodes/parsenodes.h10
2 files changed, 3 insertions, 10 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h
index 6b64961525a..0d3d3af8a1c 100644
--- a/src/include/nodes/nodes.h
+++ b/src/include/nodes/nodes.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodes.h,v 1.83 2000/11/12 00:37:01 tgl Exp $
+ * $Id: nodes.h,v 1.84 2000/11/24 20:16:40 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -202,7 +202,6 @@ typedef enum NodeTag
T_AlterGroupStmt,
T_DropGroupStmt,
T_ReindexStmt,
- T_SetSessionStmt,
T_CheckPointStmt,
T_A_Expr = 700,
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index a15d4c0ad85..67db2fe3e96 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: parsenodes.h,v 1.121 2000/11/14 18:37:48 tgl Exp $
+ * $Id: parsenodes.h,v 1.122 2000/11/24 20:16:40 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -697,15 +697,9 @@ typedef struct ExplainStmt
} ExplainStmt;
/* ----------------------
- * Set Session Statement
+ * Checkpoint Statement
* ----------------------
*/
-typedef struct SetSessionStmt
-{
- NodeTag type;
- List *args;
-} SetSessionStmt;
-
typedef struct CheckPointStmt
{
NodeTag type;