OSDN Git Service

Fix regression test following core's behavior
[pghintplan/pg_hint_plan.git] / SPECS / pg_hint_plan10.spec
index 700d2da..2a26fe7 100644 (file)
@@ -1,5 +1,5 @@
-# SPEC file for pg_store_plans
-# Copyright(C) 2017 NIPPON TELEGRAPH AND TELEPHONE CORPORATION
+# SPEC file for pg_hint_plans
+# Copyright(C) 2018 NIPPON TELEGRAPH AND TELEPHONE CORPORATION
 
 %define _pgdir   /usr/pgsql-10
 %define _bindir  %{_pgdir}/bin
@@ -14,7 +14,7 @@
 ## Set general information for pg_store_plans.
 Summary:    Optimizer hint on PostgreSQL 10
 Name:       pg_hint_plan10
-Version:    1.2.0
+Version:    1.3.1
 Release:    1%{?dist}
 License:    BSD
 Group:      Applications/Databases
@@ -57,8 +57,8 @@ rm -rf %{buildroot}
 install -d %{buildroot}%{_libdir}
 install pg_hint_plan.so %{buildroot}%{_libdir}/pg_hint_plan.so
 install -d %{buildroot}%{_datadir}/extension
-install -m 644 pg_hint_plan--1.2.0.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.2.0.sql
-install -m 644 pg_hint_plan--1.1.3--1.2.0.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.3--1.2.0.sql
+install -m 644 pg_hint_plan--1.3.1.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.3.1.sql
+install -m 644 pg_hint_plan--1.3.0--1.3.1.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.3.0--1.3.1.sql
 install -m 644 pg_hint_plan.control %{buildroot}%{_datadir}/extension/pg_hint_plan.control
 
 %clean
@@ -68,12 +68,16 @@ rm -rf %{buildroot}
 %defattr(0755,root,root)
 %{_libdir}/pg_hint_plan.so
 %defattr(0644,root,root)
-%{_datadir}/extension/pg_hint_plan--1.2.0.sql
-%{_datadir}/extension/pg_hint_plan--1.1.3--1.2.0.sql
+%{_datadir}/extension/pg_hint_plan--1.3.1.sql
+%{_datadir}/extension/pg_hint_plan--1.3.0--1.3.1.sql
 %{_datadir}/extension/pg_hint_plan.control
 
 # History of pg_hint_plan.
 %changelog
+* Tue Jun 08 2018 Kyotaro Horiguchi
+- Fixed a crash bug.
+* Tue Oct 10 2017 Kyotaro Horiguchi
+- Support PostgreSQL 10. Version 1.3.0.
 * Tue Feb 7 2017 Kyotaro Horiguchi
 - Added new hint Parallel. Version 1.2.0.
 * Thu Jul 21 2016 Kyotaro Horiguchi