Commit 18adbd9a authored by Bruce Momjian's avatar Bruce Momjian

Reverse out Thomas's group clause change.

parent bbd5c217
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.24 1997/12/23 21:38:25 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.25 1997/12/23 21:49:03 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -1481,19 +1481,6 @@ _copySortClause(SortClause *from) ...@@ -1481,19 +1481,6 @@ _copySortClause(SortClause *from)
return newnode; return newnode;
} }
#if FALSE
static GroupClause *
_copyGroupClause(GroupClause *from)
{
GroupClause *newnode = makeNode(GroupClause);
Node_Copy(from, newnode, resdom);
newnode->opoid = from->opoid;
return newnode;
}
#endif
static A_Const * static A_Const *
_copyAConst(A_Const *from) _copyAConst(A_Const *from)
{ {
...@@ -1794,11 +1781,6 @@ copyObject(void *from) ...@@ -1794,11 +1781,6 @@ copyObject(void *from)
case T_SortClause: case T_SortClause:
retval = _copySortClause(from); retval = _copySortClause(from);
break; break;
#if FALSE
case T_GroupClause:
retval = _copyGroupClause(from);
break;
#endif
case T_A_Const: case T_A_Const:
retval = _copyAConst(from); retval = _copyAConst(from);
break; break;
......
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