aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/commit_ts.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2015-11-29 18:18:42 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2015-11-29 18:18:42 -0500
commitec7eef6b1103f92aea94aa79aabd8e0e87973010 (patch)
tree1c3a8a1abcea40694fa7b1705047a4ddd1a16265 /src/backend/access/transam/commit_ts.c
parent8d32717b6bfaeda5b88b338dae728b47da19f4bb (diff)
downloadpostgresql-ec7eef6b1103f92aea94aa79aabd8e0e87973010.tar.gz
postgresql-ec7eef6b1103f92aea94aa79aabd8e0e87973010.zip
Avoid caching expression state trees for domain constraints across queries.
In commit 8abb3cda0ddc00a0ab98977a1633a95b97068d4e I attempted to cache the expression state trees constructed for domain CHECK constraints for the life of the backend (assuming the domain's constraints don't get redefined). However, this turns out not to work very well, because execQual.c will run those state trees with ecxt_per_query_memory pointing to a query-lifespan context, and in some situations we'll end up with pointers into that context getting stored into the state trees. This happens in particular with SQL-language functions, as reported by Emre Hasegeli, but there are many other cases. To fix, keep only the expression plan trees for domain CHECK constraints in the typcache's data structure, and revert to performing ExecInitExpr (at least) once per query to set up expression state trees in the query's context. Eventually it'd be nice to undo this, but that will require some careful thought about memory management for expression state trees, and it seems far too late for any such redesign in 9.5. This way is still much more efficient than what happened before 8abb3cda0.
Diffstat (limited to 'src/backend/access/transam/commit_ts.c')
0 files changed, 0 insertions, 0 deletions