• R/O
  • HTTP
  • SSH
  • HTTPS

pg_hint_plan: Commit

firtst release


Commit MetaInfo

Revisioncdd0824078d233ac42dc62deba45d7e660f96a00 (tree)
Time2017-07-27 19:16:57
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.

Addition to that, core.c has been up to date to core.

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,8 +14,8 @@ 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 \
18- pg_hint_plan--1.1.2--1.1.3.sql
17+DATA = pg_hint_plan--1.1.5.sql pg_hint_plan--1.1.3--1.1.4.sql \
18+ pg_hint_plan--1.1.4--1.1.5.sql pg_hint_plan--1.1.2--1.1.3.sql
1919
2020 EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out
2121
--- a/SPECS/pg_hint_plan93.spec
+++ b/SPECS/pg_hint_plan93.spec
@@ -13,7 +13,7 @@
1313 ## Set general information for pg_hint_plan.
1414 Summary: Optimizer hint for PostgreSQL 9.3
1515 Name: pg_hint_plan93
16-Version: 1.1.4
16+Version: 1.1.5
1717 Release: 1%{?dist}
1818 License: BSD
1919 Group: Applications/Databases
@@ -60,7 +60,8 @@ rm -rf %{buildroot}
6060 install -d %{buildroot}%{_libdir}
6161 install pg_hint_plan.so %{buildroot}%{_libdir}/pg_hint_plan.so
6262 install -d %{buildroot}%{_datadir}/extension
63-install -m 644 pg_hint_plan--1.1.4.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.4.sql
63+install -m 644 pg_hint_plan--1.1.5.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.5.sql
64+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
6465 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
6566 install -m 644 pg_hint_plan--1.1.2--1.1.3.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.2--1.1.3.sql
6667 install -m 644 pg_hint_plan.control %{buildroot}%{_datadir}/extension/pg_hint_plan.control
@@ -72,13 +73,16 @@ rm -rf %{buildroot}
7273 %defattr(0755,root,root)
7374 %{_libdir}/pg_hint_plan.so
7475 %defattr(0644,root,root)
75-%{_datadir}/extension/pg_hint_plan--1.1.4.sql
76+%{_datadir}/extension/pg_hint_plan--1.1.5.sql
77+%{_datadir}/extension/pg_hint_plan--1.1.4--1.1.5.sql
7678 %{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql
7779 %{_datadir}/extension/pg_hint_plan--1.1.2--1.1.3.sql
7880 %{_datadir}/extension/pg_hint_plan.control
7981
8082 # History of pg_hint_plan.
8183 %changelog
84+* Thu Jul 27 2017 Kyotaro Horiguchi
85+- Fixed a crash bug.
8286 * Fri May 19 2017 Kyotaro Horiguchi
8387 - Fixed a crash bug.
8488 * Mon Dec 22 2014 Kyotaro Horiguchi
--- /dev/null
+++ b/pg_hint_plan--1.1.4--1.1.5.sql
@@ -0,0 +1,4 @@
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 "ALTER EXTENSION pg_hint_plan UPDATE" to load this file. \quit
--- 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.3.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