firtst release
Revisão | 67ee094fa281e52a0fbdb24e86224f09829e093a (tree) |
---|---|
Hora | 2017-07-27 19:19:36 |
Autor | Kyotaro Horiguchi <horiguchi.kyotaro@lab....> |
Commiter | Kyotaro Horiguchi |
Change version to 1.1.5
1.1.4 has an assertion failure bug raised by DECLARE CURSOR with
enabling table hint. Fixed it.
Addition to that, core.c has been up to date to core.
@@ -5,7 +5,7 @@ | ||
5 | 5 | # |
6 | 6 | |
7 | 7 | MODULES = pg_hint_plan |
8 | -HINTPLANVER = 1.1.4 | |
8 | +HINTPLANVER = 1.1.5 | |
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,8 +14,8 @@ 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.4.sql pg_hint_plan--1.1.3--1.1.4.sql \ | |
18 | - pg_hint_plan--1.1.2--1.1.3.sql | |
17 | +DATA = pg_hint_plan--1.1.5.sql pg_hint_plan--1.1.4--1.1.5.sql \ | |
18 | + pg_hint_plan--1.1.3--1.1.4.sql pg_hint_plan--1.1.2--1.1.3.sql | |
19 | 19 | |
20 | 20 | EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out |
21 | 21 |
@@ -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.4 | |
16 | +Version: 1.1.5 | |
17 | 17 | Release: 1%{?dist} |
18 | 18 | License: BSD |
19 | 19 | Group: Applications/Databases |
@@ -62,7 +62,8 @@ install pg_hint_plan.so %{buildroot}%{_libdir}/pg_hint_plan.so | ||
62 | 62 | install -d %{buildroot}%{_datadir}/extension |
63 | 63 | install -m 644 pg_hint_plan--1.1.2--1.1.3.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.2--1.1.3.sql |
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 | -install -m 644 pg_hint_plan--1.1.4.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.4.sql | |
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 | +install -m 644 pg_hint_plan--1.1.5.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.5.sql | |
66 | 67 | install -m 644 pg_hint_plan.control %{buildroot}%{_datadir}/extension/pg_hint_plan.control |
67 | 68 | |
68 | 69 | %clean |
@@ -74,11 +75,14 @@ rm -rf %{buildroot} | ||
74 | 75 | %defattr(0644,root,root) |
75 | 76 | %{_datadir}/extension/pg_hint_plan--1.1.2--1.1.3.sql |
76 | 77 | %{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql |
77 | -%{_datadir}/extension/pg_hint_plan--1.1.4.sql | |
78 | +%{_datadir}/extension/pg_hint_plan--1.1.4--1.1.5.sql | |
79 | +%{_datadir}/extension/pg_hint_plan--1.1.5.sql | |
78 | 80 | %{_datadir}/extension/pg_hint_plan.control |
79 | 81 | |
80 | 82 | # History of pg_hint_plan. |
81 | 83 | %changelog |
84 | +* Thu Jul 27 2017 Kyotaro Horiguchi | |
85 | +- Fixed a crash bug. | |
82 | 86 | * Fri May 19 2017 Kyotaro Horiguchi |
83 | 87 | - Fixed a crash bug. |
84 | 88 | * Thu Dec 22 2014 Kyotaro Horiguchi |
@@ -0,0 +1,4 @@ | ||
1 | +/* pg_hint_plan/pg_hint_plan--1.1.4--1.1.5.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 |
@@ -1,4 +1,4 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.1.4.sql */ | |
1 | +/* pg_hint_plan/pg_hint_plan--1.1.5.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.4' | |
4 | +default_version = '1.1.5' | |
5 | 5 | relocatable = false |
6 | 6 | schema = hint_plan |