• R/O
  • HTTP
  • SSH
  • HTTPS

pg_hint_plan: 提交

firtst release


Commit MetaInfo

修訂5a909ae1d08623a7294532c1600c3449aca7e9f2 (tree)
時間2018-11-13 17:04:34
作者Kyotaro 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.

Change Summary

差異

--- 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-2014, 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,9 +14,9 @@ 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 \
18- pg_hint_plan--1.1.4--1.1.5.sql pg_hint_plan--1.1.3--1.1.4.sql \
19- pg_hint_plan--1.1.2--1.1.3.sql
17+DATA = pg_hint_plan--1.1.7.sql pg_hint_plan--1.1.6--1.1.7.sql \
18+ pg_hint_plan--1.1.5--1.1.6.sql pg_hint_plan--1.1.4--1.1.5.sql \
19+ pg_hint_plan--1.1.3--1.1.4.sql pg_hint_plan--1.1.2--1.1.3.sql
2020
2121 EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out
2222
--- a/SPECS/pg_hint_plan94.spec
+++ b/SPECS/pg_hint_plan94.spec
@@ -13,7 +13,7 @@
1313 ## Set general information for pg_hint_plan.
1414 Summary: Optimizer hint for PostgreSQL 9.4
1515 Name: pg_hint_plan94
16-Version: 1.1.6
16+Version: 1.1.7
1717 Release: 1%{?dist}
1818 License: BSD
1919 Group: Applications/Databases
@@ -64,7 +64,8 @@ install -m 644 pg_hint_plan--1.1.2--1.1.3.sql %{buildroot}%{_datadir}/extension/
6464 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
6565 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
6666 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
67-install -m 644 pg_hint_plan--1.1.6.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.6.sql
67+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
68+install -m 644 pg_hint_plan--1.1.7.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.7.sql
6869 install -m 644 pg_hint_plan.control %{buildroot}%{_datadir}/extension/pg_hint_plan.control
6970
7071 %clean
@@ -78,12 +79,15 @@ rm -rf %{buildroot}
7879 %{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql
7980 %{_datadir}/extension/pg_hint_plan--1.1.4--1.1.5.sql
8081 %{_datadir}/extension/pg_hint_plan--1.1.5--1.1.6.sql
81-%{_datadir}/extension/pg_hint_plan--1.1.6.sql
82+%{_datadir}/extension/pg_hint_plan--1.1.6--1.1.7.sql
83+%{_datadir}/extension/pg_hint_plan--1.1.7.sql
8284 %{_datadir}/extension/pg_hint_plan.control
8385
8486 # History of pg_hint_plan.
8587 %changelog
86-* Thu Jun 08 2018 Kyotaro Horiguchi
88+* Tue Nov 13 2018 Kyotaro Horiguchi
89+- Improvement of debug message emission.
90+* Fri Jun 08 2018 Kyotaro Horiguchi
8791 - Fixed a crash bug.
8892 * Thu Jul 27 2017 Kyotaro Horiguchi
8993 - Fixed a crash bug.
--- a/pg_hint_plan--1.1.5--1.1.6.sql
+++ b/pg_hint_plan--1.1.5--1.1.6.sql
@@ -2,3 +2,5 @@
22
33 -- complain if script is sourced in psql, rather than via CREATE EXTENSION
44 \echo Use "ALTER EXTENSION pg_hint_plan UPDATE" to load this file. \quit
5+
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 "ALTER EXTENSION pg_hint_plan UPDATE" to load this file. \quit
5+
6+-- Nothing to do from 1.1.6
--- a/pg_hint_plan--1.1.6.sql
+++ b/pg_hint_plan--1.1.7.sql
@@ -1,4 +1,4 @@
1-/* pg_hint_plan/pg_hint_plan--1.1.6.sql */
1+/* pg_hint_plan/pg_hint_plan--1.1.7.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.6'
4+default_version = '1.1.7'
55 relocatable = false
66 schema = hint_plan
Show on old repository browser