aboutsummaryrefslogtreecommitdiff
path: root/src/backend/nodes/copyfuncs.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-11-24 20:16:40 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-11-24 20:16:40 +0000
commit5b00ea9e50332882a46f7302a0c1db1f609a4c0b (patch)
treeefbc41b375b1a409d846ff74abcf7bb7afd8d517 /src/backend/nodes/copyfuncs.c
parentf1ddc19b10b081d0900c4fdee220f2b8a85b062f (diff)
downloadpostgresql-5b00ea9e50332882a46f7302a0c1db1f609a4c0b.tar.gz
postgresql-5b00ea9e50332882a46f7302a0c1db1f609a4c0b.zip
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/backend/nodes/copyfuncs.c')
-rw-r--r--src/backend/nodes/copyfuncs.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c
index 9c342b5dc1e..1e03e044182 100644
--- a/src/backend/nodes/copyfuncs.c
+++ b/src/backend/nodes/copyfuncs.c
@@ -15,7 +15,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.132 2000/11/14 18:37:42 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.133 2000/11/24 20:16:39 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -2513,16 +2513,6 @@ _copyReindexStmt(ReindexStmt *from)
return newnode;
}
-static SetSessionStmt *
-_copySetSessionStmt(SetSessionStmt *from)
-{
- SetSessionStmt *newnode = makeNode(SetSessionStmt);
-
- Node_Copy(from, newnode, args);
-
- return newnode;
-}
-
/* ****************************************************************
* pg_list.h copy functions
@@ -2922,9 +2912,6 @@ copyObject(void *from)
case T_ReindexStmt:
retval = _copyReindexStmt(from);
break;
- case T_SetSessionStmt:
- retval = _copySetSessionStmt(from);
- break;
case T_CheckPointStmt:
retval = (void*)makeNode(CheckPointStmt);
break;