1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Update pg_stat_statements extension for parallel query.

All functions provided by this extension are PARALLEL SAFE.  Given the
general prohibition against write operations in parallel queries, it is
perhaps a bit surprising that pg_stat_statements_reset() is parallel safe.
But since it only modifies shared memory, not the database, it's OK.

Andreas Karlsson
This commit is contained in:
Robert Haas
2016-06-10 10:42:01 -04:00
parent 3d8fc8c68c
commit 496899ccc2
4 changed files with 14 additions and 7 deletions

View File

@ -1,5 +1,5 @@
# pg_stat_statements extension
comment = 'track execution statistics of all SQL statements executed'
default_version = '1.3'
default_version = '1.4'
module_pathname = '$libdir/pg_stat_statements'
relocatable = true