OSDN Git Service

Version 1.6.1.
authorKyotaro Horiguchi <horikyota.ntt@gmail.com>
Thu, 3 Feb 2022 07:56:11 +0000 (16:56 +0900)
committerKyotaro Horiguchi <horikyota.ntt@gmail.com>
Thu, 3 Feb 2022 07:56:11 +0000 (16:56 +0900)
The only differnece since 1.6 is a fix of a bug that causes a strange
error message at the first run or a runs after crash.

Makefile
SPECS/pg_store_plans14.spec
pg_store_plans.control

index 578c3a1..c429cab 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 # pg_stat_plan/Makefile
 
 MODULES = pg_store_plans
-STOREPLANSVER = 1.6
+STOREPLANSVER = 1.6.1
 
 MODULE_big = pg_store_plans
 OBJS = pg_store_plans.o pgsp_json.o pgsp_json_text.o pgsp_explain.o
@@ -10,7 +10,7 @@ EXTENSION = pg_store_plans
 
 PG_VERSION := $(shell pg_config --version | sed "s/^PostgreSQL //" | sed "s/\.[0-9]*$$//")
 
-DATA = pg_store_plans--1.6.sql
+DATA = pg_store_plans--1.6.sql pg_store_plans--1.6--1.6.1.sql
 
 REGRESS = convert store
 REGRESS_OPTS = --temp-config=regress.conf
index 8daa666..626de1c 100644 (file)
@@ -16,7 +16,7 @@
 ## Set general information for pg_store_plans.
 Summary:    Record executed plans on PostgreSQL 14
 Name:       pg_store_plans14
-Version:    1.6
+Version:    1.6.1
 Release:    1%{?dist}
 License:    BSD
 Group:      Applications/Databases
@@ -39,7 +39,7 @@ Note that this package is available for only PostgreSQL 14.
 
 %package llvmjit
 Requires: postgresql14-server, postgresql14-llvmjit
-Requires: pg_store_plans14 = 1.6
+Requires: pg_store_plans14 = 1.6.1
 Summary:  Just-in-time compilation support for pg_store_plans14
 
 %description llvmjit
@@ -76,6 +76,7 @@ rm -rf %{buildroot}
 %{_libdir}/pg_store_plans.so
 %defattr(0644,root,root)
 %{_datadir}/extension/pg_store_plans--1.6.sql
+%{_datadir}/extension/pg_store_plans--1.6--1.6.1.sql
 %{_datadir}/extension/pg_store_plans.control
 
 %files llvmjit
@@ -85,6 +86,8 @@ rm -rf %{buildroot}
 
 # History of pg_store_plans.
 %changelog
+* Mon Feb 03 2022 Kyotaro Horiguchi
+- Version 1.6.1.
 * Mon Jan 17 2022 Tatsuro Yamada, Julien Rouhaud, Kyotaro Horiguchi
 - Version 1.6. Supports PostgreSQL 14
 * Wed Jan 27 2021 Kyotaro Horiguchi
index 30d5ba7..b150227 100644 (file)
@@ -1,5 +1,5 @@
 # pg_store_plans extension
 comment = 'track plan statistics of all SQL statements executed'
-default_version = '1.6'
+default_version = '1.6.1'
 module_pathname = '$libdir/pg_store_plans'
 relocatable = true