-
- Downloads
Some infrastructure changes for the upcoming auto-explain contrib module:
* Refactor explain.c slightly to export a convenient-to-use subroutine for printing EXPLAIN results. * Provide hooks for plugins to get control at ExecutorStart and ExecutorEnd as well as ExecutorRun. * Add some minimal support for tracking the total runtime of ExecutorRun. This code won't actually do anything unless a plugin prods it to. * Change the API of the DefineCustomXXXVariable functions to allow nonzero "flags" to be specified for a custom GUC variable. While at it, also make the "bootstrap" default value for custom GUCs be explicitly specified as a parameter to these functions. This is to eliminate confusion over where the default comes from, as has been expressed in the past by some users of the custom-variable facility. * Refactor GUC code a bit to ensure that a custom variable gets initialized to something valid (like its default value) even if the placeholder value was invalid.
Showing
- src/backend/commands/explain.c 32 additions, 14 deletionssrc/backend/commands/explain.c
- src/backend/executor/execMain.c 41 additions, 3 deletionssrc/backend/executor/execMain.c
- src/backend/tcop/pquery.c 3 additions, 1 deletionsrc/backend/tcop/pquery.c
- src/backend/utils/misc/guc.c 158 additions, 124 deletionssrc/backend/utils/misc/guc.c
- src/include/commands/explain.h 4 additions, 1 deletionsrc/include/commands/explain.h
- src/include/executor/execdesc.h 4 additions, 1 deletionsrc/include/executor/execdesc.h
- src/include/executor/executor.h 11 additions, 1 deletionsrc/include/executor/executor.h
- src/include/utils/guc.h 35 additions, 1 deletionsrc/include/utils/guc.h
- src/include/utils/guc_tables.h 2 additions, 22 deletionssrc/include/utils/guc_tables.h
- src/pl/plperl/plperl.c 3 additions, 2 deletionssrc/pl/plperl/plperl.c
Loading
Please register or sign in to comment