Skip to content

Commit c27eba3

Browse files
committed
PG-1370 Bump PGSM version up to 2.1.1
1 parent 9333608 commit c27eba3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

META.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pg_stat_monitor",
33
"abstract": "PostgreSQL Query Performance Monitoring Tool",
44
"description": "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 would need to calculate the aggregates, which is quite an expensive operation.",
5-
"version": "2.1.0",
5+
"version": "2.1.1",
66
"maintainer": [
77
"Artem Gavrilov <artem.gavrilov@percona.com>",
88
"Diego dos Santos Fronza <diego.fronza@percona.com>"
@@ -15,7 +15,7 @@
1515
"abstract": "PostgreSQL Query Performance Monitoring Tool",
1616
"file": "pg_stat_monitor--2.0--2.1.sql",
1717
"docfile": "README.md",
18-
"version": "2.1.0"
18+
"version": "2.1.1"
1919
}
2020
},
2121
"prereqs": {

pg_stat_monitor.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ typedef enum pgsmVersion
3737

3838
PG_MODULE_MAGIC;
3939

40-
#define BUILD_VERSION "2.1.0"
40+
#define BUILD_VERSION "2.1.1"
4141

4242
/* Number of output arguments (columns) for various API versions */
4343
#define PG_STAT_MONITOR_COLS_V1_0 52

regression/expected/version.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CREATE EXTENSION pg_stat_monitor;
22
SELECT pg_stat_monitor_version();
33
pg_stat_monitor_version
44
-------------------------
5-
2.1.0
5+
2.1.1
66
(1 row)
77

88
DROP EXTENSION pg_stat_monitor;

0 commit comments

Comments
 (0)