firtst release
Revisão | 523c048aac38ecfee1533ad68405a0f47195bb5c (tree) |
---|---|
Hora | 2019-01-17 16:41:58 |
Autor | Kyotaro Horiguchi <horiguchi.kyotaro@lab....> |
Commiter | Kyotaro Horiguchi |
Change version to 1.1.8
Version bumped to 1.1.8. SPEC file is updated.
@@ -5,7 +5,7 @@ | ||
5 | 5 | # |
6 | 6 | |
7 | 7 | MODULES = pg_hint_plan |
8 | -HINTPLANVER = 1.1.7 | |
8 | +HINTPLANVER = 1.1.8 | |
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 |
@@ -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.7 | |
16 | +Version: 1.1.8 | |
17 | 17 | Release: 1%{?dist} |
18 | 18 | License: BSD |
19 | 19 | Group: Applications/Databases |
@@ -66,16 +66,19 @@ rm -rf %{buildroot} | ||
66 | 66 | %defattr(0755,root,root) |
67 | 67 | %{_libdir}/pg_hint_plan.so |
68 | 68 | %defattr(0644,root,root) |
69 | -%{_datadir}/extension/pg_hint_plan--1.1.2--1.1.3.sql | |
70 | -%{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql | |
71 | -%{_datadir}/extension/pg_hint_plan--1.1.4--1.1.5.sql | |
72 | -%{_datadir}/extension/pg_hint_plan--1.1.5--1.1.6.sql | |
69 | +%{_datadir}/extension/pg_hint_plan--1.1.8.sql | |
70 | +%{_datadir}/extension/pg_hint_plan--1.1.7--1.1.8.sql | |
73 | 71 | %{_datadir}/extension/pg_hint_plan--1.1.6--1.1.7.sql |
74 | -%{_datadir}/extension/pg_hint_plan--1.1.7.sql | |
72 | +%{_datadir}/extension/pg_hint_plan--1.1.5--1.1.6.sql | |
73 | +%{_datadir}/extension/pg_hint_plan--1.1.4--1.1.5.sql | |
74 | +%{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql | |
75 | +%{_datadir}/extension/pg_hint_plan--1.1.2--1.1.3.sql | |
75 | 76 | %{_datadir}/extension/pg_hint_plan.control |
76 | 77 | |
77 | 78 | # History of pg_hint_plan. |
78 | 79 | %changelog |
80 | +* Thu Jan 17 2019 Kyotaro Horiguchi | |
81 | +- Fixed some bugs. Version 1.1.8. | |
79 | 82 | * Tue Nov 13 2018 Kyotaro Horiguchi |
80 | 83 | - Improvement of debug message emission. |
81 | 84 | * Fri Jun 08 2018 Kyotaro Horiguchi |
@@ -0,0 +1,6 @@ | ||
1 | +/* pg_hint_plan/pg_hint_plan--1.1.7--1.1.8.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.7 |
@@ -1,4 +1,4 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.1.7.sql */ | |
1 | +/* pg_hint_plan/pg_hint_plan--1.1.8.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.7' | |
4 | +default_version = '1.1.8' | |
5 | 5 | relocatable = false |
6 | 6 | schema = hint_plan |