firtst release
修訂 | 5a909ae1d08623a7294532c1600c3449aca7e9f2 (tree) |
---|---|
時間 | 2018-11-13 17:04:34 |
作者 | Kyotaro Horiguchi <horiguchi.kyotaro@lab....> |
Commiter | Kyotaro Horiguchi |
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.
@@ -2,7 +2,7 @@ core.c and make_join_rel.c are parts of PostgreSQL Database Management System. | ||
2 | 2 | (formerly known as Postgres, then as Postgres95) |
3 | 3 | Copyright holders of those files are following organizations: |
4 | 4 | |
5 | -Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group | |
5 | +Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group | |
6 | 6 | |
7 | 7 | Portions Copyright (c) 1994, The Regents of the University of California |
8 | 8 |
@@ -5,7 +5,7 @@ | ||
5 | 5 | # |
6 | 6 | |
7 | 7 | MODULES = pg_hint_plan |
8 | -HINTPLANVER = 1.1.6 | |
8 | +HINTPLANVER = 1.1.7 | |
9 | 9 | |
10 | 10 | 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 |
11 | 11 |
@@ -14,9 +14,9 @@ REGRESSION_EXPECTED = expected/init.out expected/base_plan.out expected/pg_hint_ | ||
14 | 14 | REGRESS_OPTS = --encoding=UTF8 |
15 | 15 | |
16 | 16 | 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 | |
20 | 20 | |
21 | 21 | EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out |
22 | 22 |
@@ -13,7 +13,7 @@ | ||
13 | 13 | ## Set general information for pg_hint_plan. |
14 | 14 | Summary: Optimizer hint for PostgreSQL 9.4 |
15 | 15 | Name: pg_hint_plan94 |
16 | -Version: 1.1.6 | |
16 | +Version: 1.1.7 | |
17 | 17 | Release: 1%{?dist} |
18 | 18 | License: BSD |
19 | 19 | Group: Applications/Databases |
@@ -64,7 +64,8 @@ install -m 644 pg_hint_plan--1.1.2--1.1.3.sql %{buildroot}%{_datadir}/extension/ | ||
64 | 64 | 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 |
65 | 65 | 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 |
66 | 66 | 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 | |
68 | 69 | install -m 644 pg_hint_plan.control %{buildroot}%{_datadir}/extension/pg_hint_plan.control |
69 | 70 | |
70 | 71 | %clean |
@@ -78,12 +79,15 @@ rm -rf %{buildroot} | ||
78 | 79 | %{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql |
79 | 80 | %{_datadir}/extension/pg_hint_plan--1.1.4--1.1.5.sql |
80 | 81 | %{_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 | |
82 | 84 | %{_datadir}/extension/pg_hint_plan.control |
83 | 85 | |
84 | 86 | # History of pg_hint_plan. |
85 | 87 | %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 | |
87 | 91 | - Fixed a crash bug. |
88 | 92 | * Thu Jul 27 2017 Kyotaro Horiguchi |
89 | 93 | - Fixed a crash bug. |
@@ -2,3 +2,5 @@ | ||
2 | 2 | |
3 | 3 | -- complain if script is sourced in psql, rather than via CREATE EXTENSION |
4 | 4 | \echo Use "ALTER EXTENSION pg_hint_plan UPDATE" to load this file. \quit |
5 | + | |
6 | +-- Nothing to do from 1.1.5 |
@@ -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 |
@@ -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 */ | |
2 | 2 | |
3 | 3 | -- complain if script is sourced in psql, rather than via CREATE EXTENSION |
4 | 4 | \echo Use "CREATE EXTENSION pg_hint_plan" to load this file. \quit |
@@ -1,6 +1,6 @@ | ||
1 | 1 | # pg_hint_plan extension |
2 | 2 | |
3 | 3 | comment = '' |
4 | -default_version = '1.1.6' | |
4 | +default_version = '1.1.7' | |
5 | 5 | relocatable = false |
6 | 6 | schema = hint_plan |