Bumped version number to 0.7.2.

This commit is contained in:
Ibrar Ahmed
2021-01-14 13:04:46 +00:00
parent 0dea3c4e8f
commit fca8c7a5b2
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
"name": "pg_stat_monitor", "name": "pg_stat_monitor",
"abstract": "PostgreSQL Query Performance Monitoring Tool", "abstract": "PostgreSQL Query Performance Monitoring Tool",
"description": "The pg_stat_monitor is a PostgreSQL Query Performance Monitoring tool, based on PostgreSQL's contrib module pg_stat_statements. PostgreSQLs pg_stat_statements provides the basic statistics, which is sometimes not enough. The major shortcoming in pg_stat_statements is that it accumulates all the queries and their statistics and does not provide aggregated statistics nor histogram information. In this case, a user needs to calculate the aggregate which is quite expensive.", "description": "The pg_stat_monitor is a PostgreSQL Query Performance Monitoring tool, based on PostgreSQL's contrib module pg_stat_statements. PostgreSQLs pg_stat_statements provides the basic statistics, which is sometimes not enough. The major shortcoming in pg_stat_statements is that it accumulates all the queries and their statistics and does not provide aggregated statistics nor histogram information. In this case, a user needs to calculate the aggregate which is quite expensive.",
"version": "0.7.1", "version": "0.7.2",
"maintainer": [ "maintainer": [
"ibrar.ahmed@percona.com" "ibrar.ahmed@percona.com"
], ],
@@ -12,7 +12,7 @@
"abstract": "PostgreSQL Query Performance Monitoring Tool", "abstract": "PostgreSQL Query Performance Monitoring Tool",
"file": "pg_stat_monitor--1.0.sql", "file": "pg_stat_monitor--1.0.sql",
"docfile": "README.md", "docfile": "README.md",
"version": "0.7.1" "version": "0.7.2"
} }
}, },
"prereqs": { "prereqs": {

View File

@@ -16,7 +16,7 @@
PG_MODULE_MAGIC; PG_MODULE_MAGIC;
#define BUILD_VERSION "0.7.1" #define BUILD_VERSION "0.7.2"
#define PG_STAT_STATEMENTS_COLS 41 /* maximum of above */ #define PG_STAT_STATEMENTS_COLS 41 /* maximum of above */
#define PGSM_TEXT_FILE "/tmp/pg_stat_monitor_query" #define PGSM_TEXT_FILE "/tmp/pg_stat_monitor_query"