diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2020-01-04 11:56:58 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2020-01-04 13:12:41 +0100 |
commit | 3fd40b628c7db4c4bcf03b548f9a55f85e327e25 (patch) | |
tree | 5db105f66b7f6b3fd753e8d43abc0455d7e25dbe /src/include/commands/explain.h | |
parent | d2e5e20e57111cca9e14f6e5a99a186d4c66a5b7 (diff) | |
download | postgresql-3fd40b628c7db4c4bcf03b548f9a55f85e327e25.tar.gz postgresql-3fd40b628c7db4c4bcf03b548f9a55f85e327e25.zip |
Make better use of ParseState in ProcessUtility
Pass ParseState into the functions called from
standard_ProcessUtility() instead passing the query string and query
environment separately. No functionality change, but it makes the
notation consistent. We had already started moving things into
that direction piece by piece, and this completes it.
Reviewed-by: Pavel Stehule <pavel.stehule@gmail.com>
Discussion: https://www.postgresql.org/message-id/flat/6e7aa4a1-be6a-1a75-b1f9-83a678e5184a@2ndquadrant.com
Diffstat (limited to 'src/include/commands/explain.h')
-rw-r--r-- | src/include/commands/explain.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/explain.h b/src/include/commands/explain.h index c727da5fe15..45027a7c471 100644 --- a/src/include/commands/explain.h +++ b/src/include/commands/explain.h @@ -64,8 +64,8 @@ typedef const char *(*explain_get_index_name_hook_type) (Oid indexId); extern PGDLLIMPORT explain_get_index_name_hook_type explain_get_index_name_hook; -extern void ExplainQuery(ParseState *pstate, ExplainStmt *stmt, const char *queryString, - ParamListInfo params, QueryEnvironment *queryEnv, DestReceiver *dest); +extern void ExplainQuery(ParseState *pstate, ExplainStmt *stmt, + ParamListInfo params, DestReceiver *dest); extern ExplainState *NewExplainState(void); |