diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2024-09-14 11:42:31 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2024-09-14 11:42:31 -0400 |
commit | 94537982ec6b4c6b7957d084f0c50eba14924baf (patch) | |
tree | 00016094f0f1cc838b0f2044b4d53da410fb36de /contrib/pg_stat_statements | |
parent | 76f2a0e5479618d48161549a148a37251b4b3d4b (diff) | |
download | postgresql-94537982ec6b4c6b7957d084f0c50eba14924baf.tar.gz postgresql-94537982ec6b4c6b7957d084f0c50eba14924baf.zip |
Remove obsolete comment in pg_stat_statements.
Commit 76db9cb63 removed the use of multiple nesting counters,
but missed one comment describing that arrangement.
Back-patch to v17 where 76db9cb63 came in, just to avoid confusion.
Julien Rouhaud
Discussion: https://postgr.es/m/gfcwh3zjxc2vygltapgo7g6yacdor5s4ynr234b6v2ohhuvt7m@gr42joxalenw
Diffstat (limited to 'contrib/pg_stat_statements')
-rw-r--r-- | contrib/pg_stat_statements/pg_stat_statements.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/contrib/pg_stat_statements/pg_stat_statements.c b/contrib/pg_stat_statements/pg_stat_statements.c index 362d222f633..3c72e437f73 100644 --- a/contrib/pg_stat_statements/pg_stat_statements.c +++ b/contrib/pg_stat_statements/pg_stat_statements.c @@ -886,13 +886,6 @@ pgss_planner(Query *parse, * We can't process the query if no query_string is provided, as * pgss_store needs it. We also ignore query without queryid, as it would * be treated as a utility statement, which may not be the case. - * - * Note that planner_hook can be called from the planner itself, so we - * have a specific nesting level for the planner. However, utility - * commands containing optimizable statements can also call the planner, - * same for regular DML (for instance for underlying foreign key queries). - * So testing the planner nesting level only is not enough to detect real - * top level planner call. */ if (pgss_enabled(nesting_level) && pgss_track_planning && query_string |