Commit ef9db25a authored by Tom Lane's avatar Tom Lane

Fix typo in _copyAlterUserSetStmt.

parent c5741a44
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.184 2002/05/12 23:43:02 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.185 2002/05/13 20:39:43 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -2468,7 +2468,7 @@ _copyAlterUserSetStmt(AlterUserSetStmt *from) ...@@ -2468,7 +2468,7 @@ _copyAlterUserSetStmt(AlterUserSetStmt *from)
if (from->user) if (from->user)
newnode->user = pstrdup(from->user); newnode->user = pstrdup(from->user);
if (from->variable) if (from->variable)
newnode->user = pstrdup(from->variable); newnode->variable = pstrdup(from->variable);
Node_Copy(from, newnode, value); Node_Copy(from, newnode, value);
return newnode; return newnode;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment