From fca8c7a5b25df6b4c70a88cfb8221a7ebf6627a6 Mon Sep 17 00:00:00 2001 From: Ibrar Ahmed Date: Thu, 14 Jan 2021 13:04:46 +0000 Subject: [PATCH] Bumped version number to 0.7.2. --- META.json | 4 ++-- pg_stat_monitor.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/META.json b/META.json index fcb66e0..2efda11 100644 --- a/META.json +++ b/META.json @@ -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" ], @@ -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": { diff --git a/pg_stat_monitor.c b/pg_stat_monitor.c index 5c0f4e0..8569c2e 100644 --- a/pg_stat_monitor.c +++ b/pg_stat_monitor.c @@ -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"