Commit 9dfb763f authored by Tatsuo Ishii's avatar Tatsuo Ishii

Fix duplicate call to WRITE_NODE_FIELD(whereClause) in _outSelectStmt

parent 1198d633
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/nodes/outfuncs.c,v 1.251 2005/04/28 21:47:13 tgl Exp $ * $PostgreSQL: pgsql/src/backend/nodes/outfuncs.c,v 1.252 2005/05/09 15:09:19 ishii Exp $
* *
* NOTES * NOTES
* Every node type that can appear in stored rules' parsetrees *must* * Every node type that can appear in stored rules' parsetrees *must*
...@@ -1255,7 +1255,6 @@ _outSelectStmt(StringInfo str, SelectStmt *node) ...@@ -1255,7 +1255,6 @@ _outSelectStmt(StringInfo str, SelectStmt *node)
{ {
WRITE_NODE_TYPE("SELECT"); WRITE_NODE_TYPE("SELECT");
WRITE_NODE_FIELD(whereClause);
WRITE_NODE_FIELD(distinctClause); WRITE_NODE_FIELD(distinctClause);
WRITE_NODE_FIELD(into); WRITE_NODE_FIELD(into);
WRITE_NODE_FIELD(intoColNames); WRITE_NODE_FIELD(intoColNames);
......
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