• R/O
  • HTTP
  • SSH
  • HTTPS

pg_hint_plan: Commit

firtst release


Commit MetaInfo

Revisioncdb7a47f14cffe0a8f3119d3341526cec2d808b8 (tree)
Time2017-07-27 19:20:05
AuthorKyotaro Horiguchi <horiguchi.kyotaro@lab....>
CommiterKyotaro Horiguchi

Log Message

Change version to 1.1.5

1.1.4 has an assertion failure bug raised by DECLARE CURSOR with
enabling table hint. Fixed it.

Change Summary

Incremental Difference

--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@
55 #
66
77 MODULES = pg_hint_plan
8-HINTPLANVER = 1.1.4
8+HINTPLANVER = 1.1.5
99
1010 REGRESS = init base_plan pg_hint_plan ut-init ut-A ut-S ut-J ut-L ut-G ut-R ut-fdw ut-T ut-fini
1111
@@ -14,7 +14,7 @@ REGRESSION_EXPECTED = expected/init.out expected/base_plan.out expected/pg_hint_
1414 REGRESS_OPTS = --encoding=UTF8
1515
1616 EXTENSION = pg_hint_plan
17-DATA = pg_hint_plan--1.1.4.sql pg_hint_plan--1.1.3--1.1.4.sql
17+DATA = pg_hint_plan--1.1.5.sql pg_hint_plan--1.1.4--1.1.5.sql pg_hint_plan--1.1.3--1.1.4.sql
1818
1919 EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out
2020
--- a/SPECS/pg_hint_plan95.spec
+++ b/SPECS/pg_hint_plan95.spec
@@ -13,7 +13,7 @@
1313 ## Set general information for pg_store_plans.
1414 Summary: Optimizer hint on PostgreSQL 9.5
1515 Name: pg_hint_plan95
16-Version: 1.1.4
16+Version: 1.1.5
1717 Release: 1%{?dist}
1818 License: BSD
1919 Group: Applications/Databases
@@ -56,7 +56,8 @@ rm -rf %{buildroot}
5656 install -d %{buildroot}%{_libdir}
5757 install pg_hint_plan.so %{buildroot}%{_libdir}/pg_hint_plan.so
5858 install -d %{buildroot}%{_datadir}/extension
59-install -m 644 pg_hint_plan--1.1.4.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.4.sql
59+install -m 644 pg_hint_plan--1.1.5.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.5.sql
60+install -m 644 pg_hint_plan--1.1.4--1.1.5.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.4--1.1.5.sql
6061 install -m 644 pg_hint_plan--1.1.3--1.1.4.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql
6162 install -m 644 pg_hint_plan.control %{buildroot}%{_datadir}/extension/pg_hint_plan.control
6263
@@ -67,12 +68,15 @@ rm -rf %{buildroot}
6768 %defattr(0755,root,root)
6869 %{_libdir}/pg_hint_plan.so
6970 %defattr(0644,root,root)
70-%{_datadir}/extension/pg_hint_plan--1.1.4.sql
71+%{_datadir}/extension/pg_hint_plan--1.1.5.sql
72+%{_datadir}/extension/pg_hint_plan--1.1.4--1.1.5.sql
7173 %{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql
7274 %{_datadir}/extension/pg_hint_plan.control
7375
7476 # History of pg_hint_plan.
7577 %changelog
78+* Thu Jul 27 2017 Kyotaro Horiguchi
79+- Fixed a crash bug.
7680 * Fri May 19 2017 Kyotaro Horiguchi
7781 - Fixed a crash bug.
7882 * Fri May 13 2016 Kyotaro Horiguchi
--- /dev/null
+++ b/pg_hint_plan--1.1.4--1.1.5.sql
@@ -0,0 +1,6 @@
1+/* pg_hint_plan/pg_hint_plan--1.1.4--1.1.5.sql */
2+
3+-- complain if script is sourced in psql, rather than via CREATE EXTENSION
4+\echo Use "CREATE EXTENSION pg_hint_plan" to load this file. \quit
5+
6+-- Nothing to do from 1.1.4
--- a/pg_hint_plan--1.1.4.sql
+++ b/pg_hint_plan--1.1.5.sql
@@ -1,4 +1,4 @@
1-/* pg_hint_plan/pg_hint_plan--1.1.4.sql */
1+/* pg_hint_plan/pg_hint_plan--1.1.5.sql */
22
33 -- complain if script is sourced in psql, rather than via CREATE EXTENSION
44 \echo Use "CREATE EXTENSION pg_hint_plan" to load this file. \quit
--- a/pg_hint_plan.control
+++ b/pg_hint_plan.control
@@ -1,6 +1,6 @@
11 # pg_hint_plan extension
22
33 comment = ''
4-default_version = '1.1.4'
4+default_version = '1.1.5'
55 relocatable = false
66 schema = hint_plan
Show on old repository browser