提交 18adbd9a 编写于 作者: B Bruce Momjian

Reverse out Thomas's group clause change.

上级 bbd5c217
......@@ -7,7 +7,7 @@
*
*
* 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)
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 *
_copyAConst(A_Const *from)
{
......@@ -1794,11 +1781,6 @@ copyObject(void *from)
case T_SortClause:
retval = _copySortClause(from);
break;
#if FALSE
case T_GroupClause:
retval = _copyGroupClause(from);
break;
#endif
case T_A_Const:
retval = _copyAConst(from);
break;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册