• R/O
  • HTTP
  • SSH
  • HTTPS

pg_hint_plan: Commit

firtst release


Commit MetaInfo

Revision9e354ac713b355dd2400ccde7b47ecbe91c86f69 (tree)
Zeit2018-11-13 16:54:21
AutorKyotaro Horiguchi <horiguchi.kyotaro@lab....>
CommiterKyotaro Horiguchi

Log Message

Changed version to 1.1.7

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.

Ändern Zusammenfassung

Diff

--- a/COPYRIGHT.postgresql
+++ b/COPYRIGHT.postgresql
@@ -2,7 +2,7 @@ core.c and make_join_rel.c are parts of PostgreSQL Database Management System.
22 (formerly known as Postgres, then as Postgres95)
33 Copyright holders of those files are following organizations:
44
5-Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
5+Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
66
77 Portions Copyright (c) 1994, The Regents of the University of California
88
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@
55 #
66
77 MODULES = pg_hint_plan
8-HINTPLANVER = 1.1.6
8+HINTPLANVER = 1.1.7
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,10 @@ 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.6.sql pg_hint_plan--1.1.5--1.1.6.sql pg_hint_plan--1.1.4--1.1.5.sql pg_hint_plan--1.1.3--1.1.4.sql
17+
18+DATA = pg_hint_plan--1.1.7.sql pg_hint_plan--1.1.6--1.1.7.sql \
19+ pg_hint_plan--1.1.5--1.1.6.sql pg_hint_plan--1.1.4--1.1.5.sql \
20+ pg_hint_plan--1.1.3--1.1.4.sql
1821
1922 EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out
2023
--- 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.6
16+Version: 1.1.7
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.6.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.6.sql
59+install -m 644 pg_hint_plan--1.1.7.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.7.sql
60+install -m 644 pg_hint_plan--1.1.6--1.1.7.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.6--1.1.7.sql
6061 install -m 644 pg_hint_plan--1.1.5--1.1.6.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.5--1.1.6.sql
6162 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
6263 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
@@ -69,7 +70,8 @@ rm -rf %{buildroot}
6970 %defattr(0755,root,root)
7071 %{_libdir}/pg_hint_plan.so
7172 %defattr(0644,root,root)
72-%{_datadir}/extension/pg_hint_plan--1.1.6.sql
73+%{_datadir}/extension/pg_hint_plan--1.1.7.sql
74+%{_datadir}/extension/pg_hint_plan--1.1.6--1.1.7.sql
7375 %{_datadir}/extension/pg_hint_plan--1.1.5--1.1.6.sql
7476 %{_datadir}/extension/pg_hint_plan--1.1.4--1.1.5.sql
7577 %{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql
@@ -77,6 +79,8 @@ rm -rf %{buildroot}
7779
7880 # History of pg_hint_plan.
7981 %changelog
82+* Tue Nov 13 2018 Kyotaro Horiguchi
83+- Improvement of debug message emission.
8084 * Fri Jun 08 2018 Kyotaro Horiguchi
8185 - Fixed a crash bug.
8286 * Thu Jul 27 2017 Kyotaro Horiguchi
--- a/pg_hint_plan--1.1.5--1.1.6.sql
+++ b/pg_hint_plan--1.1.5--1.1.6.sql
@@ -1,6 +1,6 @@
1-/* pg_hint_plan/pg_hint_plan--1.1.4--1.1.5.sql */
1+/* pg_hint_plan/pg_hint_plan--1.1.5--1.1.6.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
55
6--- Nothing to do from 1.1.4
6+-- Nothing to do from 1.1.5
--- /dev/null
+++ b/pg_hint_plan--1.1.6--1.1.7.sql
@@ -0,0 +1,6 @@
1+/* pg_hint_plan/pg_hint_plan--1.1.6--1.1.7.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.6
--- 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.6'
4+default_version = '1.1.7'
55 relocatable = false
66 schema = hint_plan
Show on old repository browser