mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
UNION work for UNION ALL and other union stuff.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.13 1997/12/23 19:50:54 thomas Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.14 1997/12/27 06:40:54 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Every (plan) node in POSTGRES has an associated "out" routine which
|
||||
@@ -194,7 +194,7 @@ _outQuery(StringInfo str, Query *node)
|
||||
sprintf(buf, " :qual ");
|
||||
appendStringInfo(str, buf);
|
||||
_outNode(str, node->qual);
|
||||
|
||||
/* how are we handling aggregates, sort, and group by? bjm 1997/12/26 */
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.11 1997/12/18 12:53:59 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.12 1997/12/27 06:40:59 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Most of the read functions for plan nodes are tested. (In fact, they
|
||||
@@ -119,6 +119,7 @@ _readQuery()
|
||||
|
||||
token = lsptok(NULL, &length); /* skip :qual */
|
||||
local_node->qual = nodeRead(true);
|
||||
/* how are we handling aggregates, sort, and group by? bjm 1997/12/26 */
|
||||
|
||||
return (local_node);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user