firtst release
Revisão | cdb7a47f14cffe0a8f3119d3341526cec2d808b8 (tree) |
---|---|
Hora | 2017-07-27 19:20:05 |
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.
@@ -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,7 +14,7 @@ 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 | |
17 | +DATA = pg_hint_plan--1.1.5.sql pg_hint_plan--1.1.4--1.1.5.sql pg_hint_plan--1.1.3--1.1.4.sql | |
18 | 18 | |
19 | 19 | EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out |
20 | 20 |
@@ -13,7 +13,7 @@ | ||
13 | 13 | ## Set general information for pg_store_plans. |
14 | 14 | Summary: Optimizer hint on PostgreSQL 9.5 |
15 | 15 | Name: pg_hint_plan95 |
16 | -Version: 1.1.4 | |
16 | +Version: 1.1.5 | |
17 | 17 | Release: 1%{?dist} |
18 | 18 | License: BSD |
19 | 19 | Group: Applications/Databases |
@@ -56,7 +56,8 @@ rm -rf %{buildroot} | ||
56 | 56 | install -d %{buildroot}%{_libdir} |
57 | 57 | install pg_hint_plan.so %{buildroot}%{_libdir}/pg_hint_plan.so |
58 | 58 | install -d %{buildroot}%{_datadir}/extension |
59 | -install -m 644 pg_hint_plan--1.1.4.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.4.sql | |
59 | +install -m 644 pg_hint_plan--1.1.5.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.5.sql | |
60 | +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 | |
60 | 61 | 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 |
61 | 62 | install -m 644 pg_hint_plan.control %{buildroot}%{_datadir}/extension/pg_hint_plan.control |
62 | 63 |
@@ -67,12 +68,15 @@ rm -rf %{buildroot} | ||
67 | 68 | %defattr(0755,root,root) |
68 | 69 | %{_libdir}/pg_hint_plan.so |
69 | 70 | %defattr(0644,root,root) |
70 | -%{_datadir}/extension/pg_hint_plan--1.1.4.sql | |
71 | +%{_datadir}/extension/pg_hint_plan--1.1.5.sql | |
72 | +%{_datadir}/extension/pg_hint_plan--1.1.4--1.1.5.sql | |
71 | 73 | %{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql |
72 | 74 | %{_datadir}/extension/pg_hint_plan.control |
73 | 75 | |
74 | 76 | # History of pg_hint_plan. |
75 | 77 | %changelog |
78 | +* Thu Jul 27 2017 Kyotaro Horiguchi | |
79 | +- Fixed a crash bug. | |
76 | 80 | * Fri May 19 2017 Kyotaro Horiguchi |
77 | 81 | - Fixed a crash bug. |
78 | 82 | * Fri May 13 2016 Kyotaro Horiguchi |
@@ -0,0 +1,6 @@ | ||
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 "CREATE EXTENSION pg_hint_plan" to load this file. \quit | |
5 | + | |
6 | +-- Nothing to do from 1.1.4 |
@@ -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 |