]> granicus.if.org Git - postgresql/commit
Add some infrastructure for contrib/pg_stat_statements.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 27 Mar 2012 19:14:13 +0000 (15:14 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 27 Mar 2012 19:17:40 +0000 (15:17 -0400)
commita40fa613b516b97c37d87ac1b21fb7aa8a2f2c1b
tree1284edc47dc0dc6d84e3ae83aa64026a0aac66c6
parent40b9b957694cf7749c420c6c51a7e1d3c9b1fec1
Add some infrastructure for contrib/pg_stat_statements.

Add a queryId field to Query and PlannedStmt.  This is not used by the
core backend, except for being copied around at appropriate times.
It's meant to allow plug-ins to track a particular query forward from
parse analysis to execution.

The queryId is intentionally not dumped into stored rules (and hence this
commit doesn't bump catversion).  You could argue that choice either way,
but it seems better that stored rule strings not have any dependency
on plug-ins that might or might not be present.

Also, add a post_parse_analyze_hook that gets invoked at the end of
parse analysis (but only for top-level analysis of complete queries,
not cases such as analyzing a domain's default-value expression).
This is mainly meant to be used to compute and assign a queryId,
but it could have other applications.

Peter Geoghegan
src/backend/nodes/copyfuncs.c
src/backend/nodes/equalfuncs.c
src/backend/nodes/outfuncs.c
src/backend/nodes/readfuncs.c
src/backend/optimizer/plan/planner.c
src/backend/parser/analyze.c
src/backend/rewrite/rewriteHandler.c
src/backend/tcop/postgres.c
src/include/nodes/parsenodes.h
src/include/nodes/plannodes.h
src/include/parser/analyze.h