Comment out code pfree()'ing a list header after list_concat speedup/slab2-experimental
authorAndres Freund <andres@anarazel.de>
Sun, 27 Nov 2011 01:09:04 +0000 (02:09 +0100)
committerAndres Freund <andres@anarazel.de>
Sun, 27 Nov 2011 01:09:04 +0000 (02:09 +0100)
commit3fcdcce5a4f446ce71ef4cd6325c0e39b65b5410
treebb19bda79db46d78f11fdbc77df56e770377bfd4
parent15bad465d733fd9efbc4480dcef70b043fbc670a
Comment out code pfree()'ing a list header after list_concat

Identified with the following coccinelle spatch:
@@
typedef List;
identifier x;
@@

List* x;
...
-pfree(x);
+pfree(x);//FIXME listfree:
src/backend/optimizer/util/clauses.c
src/backend/parser/parse_clause.c