Skip to content

Commit

Permalink
Bumped version number to 0.7.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
ibrarahmad committed Jan 14, 2021
1 parent 0dea3c4 commit fca8c7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pg_stat_monitor",
"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. PostgreSQL’s 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": [
"ibrar.ahmed@percona.com"
],
Expand All @@ -12,7 +12,7 @@
"abstract": "PostgreSQL Query Performance Monitoring Tool",
"file": "pg_stat_monitor--1.0.sql",
"docfile": "README.md",
"version": "0.7.1"
"version": "0.7.2"
}
},
"prereqs": {
Expand Down
2 changes: 1 addition & 1 deletion pg_stat_monitor.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

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 PGSM_TEXT_FILE "/tmp/pg_stat_monitor_query"

Expand Down

0 comments on commit fca8c7a

Please sign in to comment.