File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/nodes/outfuncs.c,v 1.296 2007/02/03 14:06:54 petere Exp $
11
+ * $PostgreSQL: pgsql/src/backend/nodes/outfuncs.c,v 1.297 2007/02/12 17:19:30 tgl Exp $
12
12
*
13
13
* NOTES
14
14
* Every node type that can appear in stored rules' parsetrees *must*
@@ -1354,10 +1354,10 @@ _outRestrictInfo(StringInfo str, RestrictInfo *node)
1354
1354
WRITE_BITMAPSET_FIELD (left_relids );
1355
1355
WRITE_BITMAPSET_FIELD (right_relids );
1356
1356
WRITE_NODE_FIELD (orclause );
1357
- WRITE_NODE_FIELD ( parent_ec );
1357
+ /* don't write parent_ec, leads to infinite recursion in plan tree dump */
1358
1358
WRITE_NODE_FIELD (mergeopfamilies );
1359
- WRITE_NODE_FIELD ( left_ec );
1360
- WRITE_NODE_FIELD ( right_ec );
1359
+ /* don't write left_ec, leads to infinite recursion in plan tree dump */
1360
+ /* don't write right_ec, leads to infinite recursion in plan tree dump */
1361
1361
WRITE_NODE_FIELD (left_em );
1362
1362
WRITE_NODE_FIELD (right_em );
1363
1363
WRITE_BOOL_FIELD (outer_is_left );
You can’t perform that action at this time.
0 commit comments