Commit e4fd5346 authored by Bruce Momjian's avatar Bruce Momjian

Partial fix for select distinct in subselect.

parent 55f86ec8
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.39 1998/02/21 06:31:40 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.40 1998/02/23 02:54:11 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -549,7 +549,10 @@ _copyUnique(Unique *from) ...@@ -549,7 +549,10 @@ _copyUnique(Unique *from)
* copy remainder of node * copy remainder of node
* ---------------- * ----------------
*/ */
newnode->uniqueAttr = pstrdup(from->uniqueAttr); if (newnode->uniqueAttr)
newnode->uniqueAttr = pstrdup(from->uniqueAttr);
else
newnode->uniqueAttr = NULL;
newnode->uniqueAttrNum = from->uniqueAttrNum; newnode->uniqueAttrNum = from->uniqueAttrNum;
Node_Copy(from, newnode, uniquestate); Node_Copy(from, newnode, uniquestate);
......
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