1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

copy query cleanup.

This commit is contained in:
Bruce Momjian
1997-12-18 19:46:37 +00:00
parent 72c296dffc
commit 30856a3904

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.21 1997/12/18 19:13:49 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.22 1997/12/18 19:46:37 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -1550,7 +1550,7 @@ _copyQuery(Query *from)
newnode->qry_aggs[i] = _copyAggreg(from->qry_aggs[i]); newnode->qry_aggs[i] = _copyAggreg(from->qry_aggs[i]);
} }
else else
newnode->query_aggs = NULL; newnode->qry_aggs = NULL;
return newnode; return newnode;
} }