OSDN Git Service

Version 1.3.1 R1.3 1.3.1
authorKyotaro Horiguchi <horikyota.ntt@gmail.com>
Thu, 30 Jan 2020 10:09:57 +0000 (19:09 +0900)
committerKyotaro Horiguchi <horikyota.ntt@gmail.com>
Fri, 31 Jan 2020 03:29:37 +0000 (12:29 +0900)
Makefile
SPECS/pg_store_plans10.spec
SPECS/pg_store_plans11.spec
SPECS/pg_store_plans96.spec
pg_store_plans--1.3--1.3.1.sql [new file with mode: 0644]
pg_store_plans--1.3.1.sql [moved from pg_store_plans--1.3.sql with 100% similarity]
pg_store_plans.control

index 1f19702..f6ce920 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 # pg_stat_plan/Makefile
 
 MODULES = pg_store_plans
-STOREPLANSVER = 1.3
+STOREPLANSVER = 1.3.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.3.sql
+DATA = pg_store_plans--1.3.1.sql pg_store_plans--1.3--1.3.1.sql
 ifeq ($(PG_VERSION),10)
        DATA += pg_store_plans--1.2--1.3.sql
 endif
index 996173b..0ca9c51 100644 (file)
@@ -1,5 +1,5 @@
 # SPEC file for pg_store_plans
-# Copyright(C) 2019 NIPPON TELEGRAPH AND TELEPHONE CORPORATION
+# Copyright(C) 2020 NIPPON TELEGRAPH AND TELEPHONE CORPORATION
 
 %define _pgdir   /usr/pgsql-10
 %define _bindir  %{_pgdir}/bin
@@ -13,7 +13,7 @@
 ## Set general information for pg_store_plans.
 Summary:    Record executed plans on PostgreSQL 10
 Name:       pg_store_plans10
-Version:    1.3
+Version:    1.3.1
 Release:    1%{?dist}
 License:    BSD
 Group:      Applications/Databases
@@ -57,7 +57,8 @@ install -d %{buildroot}%{_libdir}
 install pg_store_plans.so %{buildroot}%{_libdir}/pg_store_plans.so
 install -d %{buildroot}%{_datadir}/extension
 install -m 644 pg_store_plans--1.2--1.3.sql %{buildroot}%{_datadir}/extension/pg_store_plans--1.2--1.3.sql
-install -m 644 pg_store_plans--1.3.sql %{buildroot}%{_datadir}/extension/pg_store_plans--1.3.sql
+install -m 644 pg_store_plans--1.3--1.3.1.sql %{buildroot}%{_datadir}/extension/pg_store_plans--1.3--1.3.1.sql
+install -m 644 pg_store_plans--1.3.1.sql %{buildroot}%{_datadir}/extension/pg_store_plans--1.3.1.sql
 install -m 644 pg_store_plans.control %{buildroot}%{_datadir}/extension/pg_store_plans.control
 
 %clean
@@ -68,11 +69,14 @@ rm -rf %{buildroot}
 %{_libdir}/pg_store_plans.so
 %defattr(0644,root,root)
 %{_datadir}/extension/pg_store_plans--1.2--1.3.sql
-%{_datadir}/extension/pg_store_plans--1.3.sql
+%{_datadir}/extension/pg_store_plans--1.3--1.3.1.sql
+%{_datadir}/extension/pg_store_plans--1.3.1.sql
 %{_datadir}/extension/pg_store_plans.control
 
 # History of pg_store_plans.
 %changelog
+* Tue Jan 30 2020 Kyotaro Horiguchi
+- Fixed a bug.
 * Tue Jan 22 2019 Kyotaro Horiguchi
 - Fixed a bug.
 * Tue Oct 10 2017 Kyotaro Horiguchi
index d3c41f6..595bab8 100644 (file)
@@ -1,5 +1,5 @@
 # SPEC file for pg_store_plans
-# Copyright(C) 2019 NIPPON TELEGRAPH AND TELEPHONE CORPORATION
+# Copyright(C) 2020 NIPPON TELEGRAPH AND TELEPHONE CORPORATION
 
 %define _pgdir   /usr/pgsql-11
 %define _bindir  %{_pgdir}/bin
@@ -16,8 +16,8 @@
 ## Set general information for pg_store_plans.
 Summary:    Record executed plans on PostgreSQL 11
 Name:       pg_store_plans11
-Version:    1.3
-Release:    2%{?dist}
+Version:    1.3.1
+Release:    1%{?dist}
 License:    BSD
 Group:      Applications/Databases
 Source0:    %{name}-%{version}.tar.gz
@@ -39,7 +39,7 @@ Note that this package is available for only PostgreSQL 11.
 
 %package llvmjit
 Requires: postgresql11-server, postgresql11-llvmjit
-Requires: pg_store_plans11 = 1.3
+Requires: pg_store_plans11 = 1.3.1
 Summary:  Just-in-time compilation support for pg_store_plans11
 
 %description llvmjit
@@ -75,7 +75,8 @@ rm -rf %{buildroot}
 %defattr(0755,root,root)
 %{_libdir}/pg_store_plans.so
 %defattr(0644,root,root)
-%{_datadir}/extension/pg_store_plans--1.3.sql
+%{_datadir}/extension/pg_store_plans--1.3--1.3.1.sql
+%{_datadir}/extension/pg_store_plans--1.3.1.sql
 %{_datadir}/extension/pg_store_plans.control
 
 %files llvmjit
@@ -85,6 +86,8 @@ rm -rf %{buildroot}
 
 # History of pg_store_plans.
 %changelog
+* Tue Jan 30 2020 Kyotaro Horiguchi
+- Fixed a bug.
 * Tue Jan 22 2019 Kyotaro Horiguchi
 - Supports PostgreSQL 11
 * Tue Oct 10 2017 Kyotaro Horiguchi
index 7fb5ead..54d01f7 100644 (file)
@@ -1,5 +1,5 @@
 # SPEC file for pg_store_plans
-# Copyright(C) 2019 NIPPON TELEGRAPH AND TELEPHONE CORPORATION
+# Copyright(C) 2020 NIPPON TELEGRAPH AND TELEPHONE CORPORATION
 
 %define _pgdir   /usr/pgsql-9.6
 %define _bindir  %{_pgdir}/bin
@@ -13,7 +13,7 @@
 ## Set general information for pg_store_plans.
 Summary:    Record executed plans on PostgreSQL 9.6
 Name:       pg_store_plans96
-Version:    1.3
+Version:    1.3.1
 Release:    1%{?dist}
 License:    BSD
 Group:      Applications/Databases
@@ -58,7 +58,8 @@ install pg_store_plans.so %{buildroot}%{_libdir}/pg_store_plans.so
 install -d %{buildroot}%{_datadir}/extension
 install -m 644 pg_store_plans--1.1--1.2.sql %{buildroot}%{_datadir}/extension/pg_store_plans--1.1--1.2.sql
 install -m 644 pg_store_plans--1.2--1.3.sql %{buildroot}%{_datadir}/extension/pg_store_plans--1.2--1.3.sql
-install -m 644 pg_store_plans--1.3.sql %{buildroot}%{_datadir}/extension/pg_store_plans--1.3.sql
+install -m 644 pg_store_plans--1.3--1.3.1.sql %{buildroot}%{_datadir}/extension/pg_store_plans--1.3--1.3.1.sql
+install -m 644 pg_store_plans--1.3.1.sql %{buildroot}%{_datadir}/extension/pg_store_plans--1.3.1.sql
 install -m 644 pg_store_plans.control %{buildroot}%{_datadir}/extension/pg_store_plans.control
 
 %clean
@@ -70,11 +71,14 @@ rm -rf %{buildroot}
 %defattr(0644,root,root)
 %{_datadir}/extension/pg_store_plans--1.1--1.2.sql
 %{_datadir}/extension/pg_store_plans--1.2--1.3.sql
-%{_datadir}/extension/pg_store_plans--1.3.sql
+%{_datadir}/extension/pg_store_plans--1.3--1.3.1.sql
+%{_datadir}/extension/pg_store_plans--1.3.1.sql
 %{_datadir}/extension/pg_store_plans.control
 
 # History of pg_store_plans.
 %changelog
+* Tue Jan 30 2020 Kyotaro Horiguchi
+- Fixed a bug.
 * Tue Jan 22 2019 Kyotaro Horiguchi
 - Fixed a bug.
 * Fri Aug 26 2016 Kyotaro Horiguchi
diff --git a/pg_store_plans--1.3--1.3.1.sql b/pg_store_plans--1.3--1.3.1.sql
new file mode 100644 (file)
index 0000000..238feea
--- /dev/null
@@ -0,0 +1 @@
+-- Nothing to do for SQL definitions as of 1.2
index 02ede9f..ce1c588 100644 (file)
@@ -1,5 +1,5 @@
 # pg_store_plans extension
 comment = 'track plan statistics of all SQL statements executed'
-default_version = '1.3'
+default_version = '1.3.1'
 module_pathname = '$libdir/pg_store_plans'
 relocatable = true