OSDN Git Service

Changed version to 1.1.7 REL95_1_1_7
authorKyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
Tue, 13 Nov 2018 07:33:08 +0000 (16:33 +0900)
committerKyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
Tue, 13 Nov 2018 07:54:21 +0000 (16:54 +0900)
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.

COPYRIGHT.postgresql
Makefile
SPECS/pg_hint_plan95.spec
pg_hint_plan--1.1.5--1.1.6.sql
pg_hint_plan--1.1.6--1.1.7.sql [new file with mode: 0644]
pg_hint_plan--1.1.7.sql [moved from pg_hint_plan--1.1.6.sql with 100% similarity]
pg_hint_plan.control

index d8cde9a..e23bc1d 100644 (file)
@@ -2,7 +2,7 @@ core.c and make_join_rel.c are parts of PostgreSQL Database Management System.
 (formerly known as Postgres, then as Postgres95)
 Copyright holders of those files are following organizations:
 
-Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
+Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
 
 Portions Copyright (c) 1994, The Regents of the University of California
 
index 5f0f7f7..31cb794 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@
 #
 
 MODULES = pg_hint_plan
-HINTPLANVER = 1.1.6
+HINTPLANVER = 1.1.7
 
 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
 
@@ -14,7 +14,10 @@ REGRESSION_EXPECTED = expected/init.out expected/base_plan.out expected/pg_hint_
 REGRESS_OPTS = --encoding=UTF8
 
 EXTENSION = pg_hint_plan
-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
+
+DATA = pg_hint_plan--1.1.7.sql pg_hint_plan--1.1.6--1.1.7.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
 
 EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out
 
index e4ce7c3..07557eb 100644 (file)
@@ -13,7 +13,7 @@
 ## Set general information for pg_store_plans.
 Summary:    Optimizer hint on PostgreSQL 9.5
 Name:       pg_hint_plan95
-Version:    1.1.6
+Version:    1.1.7
 Release:    1%{?dist}
 License:    BSD
 Group:      Applications/Databases
@@ -56,7 +56,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.1.6.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.6.sql
+install -m 644 pg_hint_plan--1.1.7.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.7.sql
+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
 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
 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
 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}
 %defattr(0755,root,root)
 %{_libdir}/pg_hint_plan.so
 %defattr(0644,root,root)
-%{_datadir}/extension/pg_hint_plan--1.1.6.sql
+%{_datadir}/extension/pg_hint_plan--1.1.7.sql
+%{_datadir}/extension/pg_hint_plan--1.1.6--1.1.7.sql
 %{_datadir}/extension/pg_hint_plan--1.1.5--1.1.6.sql
 %{_datadir}/extension/pg_hint_plan--1.1.4--1.1.5.sql
 %{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql
@@ -77,6 +79,8 @@ rm -rf %{buildroot}
 
 # History of pg_hint_plan.
 %changelog
+* Tue Nov 13 2018 Kyotaro Horiguchi
+- Improvement of debug message emission.
 * Fri Jun 08 2018 Kyotaro Horiguchi
 - Fixed a crash bug.
 * Thu Jul 27 2017 Kyotaro Horiguchi
index ffeeca7..1217867 100644 (file)
@@ -1,6 +1,6 @@
-/* pg_hint_plan/pg_hint_plan--1.1.4--1.1.5.sql */
+/* pg_hint_plan/pg_hint_plan--1.1.5--1.1.6.sql */
 
 -- complain if script is sourced in psql, rather than via CREATE EXTENSION
 \echo Use "CREATE EXTENSION pg_hint_plan" to load this file. \quit
 
--- Nothing to do from 1.1.4
+-- Nothing to do from 1.1.5
diff --git a/pg_hint_plan--1.1.6--1.1.7.sql b/pg_hint_plan--1.1.6--1.1.7.sql
new file mode 100644 (file)
index 0000000..14f9c5a
--- /dev/null
@@ -0,0 +1,6 @@
+/* pg_hint_plan/pg_hint_plan--1.1.6--1.1.7.sql */
+
+-- complain if script is sourced in psql, rather than via CREATE EXTENSION
+\echo Use "CREATE EXTENSION pg_hint_plan" to load this file. \quit
+
+-- Nothing to do from 1.1.6
index 067bc41..b9501ac 100644 (file)
@@ -1,6 +1,6 @@
 # pg_hint_plan extension
 
 comment = ''
-default_version = '1.1.6'
+default_version = '1.1.7'
 relocatable = false
 schema = hint_plan