• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

firtst release


Commit MetaInfo

Révision016029553f36d017d2362caaa8ddf623b8bc8a62 (tree)
l'heure2018-11-13 17:39:33
AuteurKyotaro Horiguchi <horiguchi.kyotaro@lab....>
CommiterKyotaro Horiguchi

Message de Log

Changed version to 1.3.2

Previously parse_messages and message_level were binded to the same
internal variable. Separate the two GUCs. On the way doing this some
mssages that did not honor the variable were fixed. Default behavior
is not changed but the the two variables works differently from the
previous version, perhaps closer to expected.

Change Summary

Modification

--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@
55 #
66
77 MODULES = pg_hint_plan
8-HINTPLANVER = 1.3.1
8+HINTPLANVER = 1.3.2
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-W ut-T ut-fini
1111
@@ -14,7 +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.3.1.sql pg_hint_plan--1.3.0--1.3.1.sql
17+DATA = pg_hint_plan--1.3.2.sql pg_hint_plan--1.3.0--1.3.1.sql \
18+ pg_hint_plan--1.3.1--1.3.2.sql
1819
1920 EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out RPMS
2021
--- a/SPECS/pg_hint_plan10.spec
+++ b/SPECS/pg_hint_plan10.spec
@@ -14,7 +14,7 @@
1414 ## Set general information for pg_store_plans.
1515 Summary: Optimizer hint on PostgreSQL 10
1616 Name: pg_hint_plan10
17-Version: 1.3.1
17+Version: 1.3.2
1818 Release: 1%{?dist}
1919 License: BSD
2020 Group: Applications/Databases
@@ -57,8 +57,9 @@ rm -rf %{buildroot}
5757 install -d %{buildroot}%{_libdir}
5858 install pg_hint_plan.so %{buildroot}%{_libdir}/pg_hint_plan.so
5959 install -d %{buildroot}%{_datadir}/extension
60-install -m 644 pg_hint_plan--1.3.1.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.3.1.sql
60+install -m 644 pg_hint_plan--1.3.2.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.3.2.sql
6161 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
62+install -m 644 pg_hint_plan--1.3.1--1.3.2.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.3.1--1.3.2.sql
6263 install -m 644 pg_hint_plan.control %{buildroot}%{_datadir}/extension/pg_hint_plan.control
6364
6465 %clean
@@ -68,12 +69,15 @@ rm -rf %{buildroot}
6869 %defattr(0755,root,root)
6970 %{_libdir}/pg_hint_plan.so
7071 %defattr(0644,root,root)
71-%{_datadir}/extension/pg_hint_plan--1.3.1.sql
72+%{_datadir}/extension/pg_hint_plan--1.3.2.sql
7273 %{_datadir}/extension/pg_hint_plan--1.3.0--1.3.1.sql
74+%{_datadir}/extension/pg_hint_plan--1.3.1--1.3.2.sql
7375 %{_datadir}/extension/pg_hint_plan.control
7476
7577 # History of pg_hint_plan.
7678 %changelog
79+* Tue Nov 13 2018 Kyotaro Horiguchi
80+- Version 1.3.2.
7781 * Tue Jun 08 2018 Kyotaro Horiguchi
7882 - Fixed a crash bug.
7983 * Tue Oct 10 2017 Kyotaro Horiguchi
--- /dev/null
+++ b/pg_hint_plan--1.3.1--1.3.2.sql
@@ -0,0 +1,6 @@
1+/* pg_hint_plan/pg_hint_plan--1.3.1--1.3.2.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 upgrading from 1.3.0/1.
--- a/pg_hint_plan--1.3.1.sql
+++ b/pg_hint_plan--1.3.2.sql
@@ -1,4 +1,4 @@
1-/* pg_hint_plan/pg_hint_plan--1.3.0.sql */
1+/* pg_hint_plan/pg_hint_plan--1.3.2.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.3.1'
4+default_version = '1.3.2'
55 relocatable = false
66 schema = hint_plan