firtst release
Revisão | ef58744947c15b2d4a97e3e333015bfb56a23fd1 (tree) |
---|---|
Hora | 2019-01-17 16:41:13 |
Autor | Kyotaro Horiguchi <horiguchi.kyotaro@lab....> |
Commiter | Kyotaro Horiguchi |
Change version to 1.2.5
Version bumped to 1.2.5. SPEC file is updated.
@@ -5,7 +5,7 @@ | ||
5 | 5 | # |
6 | 6 | |
7 | 7 | MODULES = pg_hint_plan |
8 | -HINTPLANVER = 1.2.4 | |
8 | +HINTPLANVER = 1.2.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-W ut-T ut-fini |
11 | 11 |
@@ -11,10 +11,10 @@ | ||
11 | 11 | %define _sourcedir %(echo ${MAKE_ROOT}) |
12 | 12 | %endif |
13 | 13 | |
14 | -## Set general information for pg_store_plans. | |
14 | +## Set general information for pg_hint_plan. | |
15 | 15 | Summary: Optimizer hint on PostgreSQL 9.6 |
16 | 16 | Name: pg_hint_plan96 |
17 | -Version: 1.2.4 | |
17 | +Version: 1.2.5 | |
18 | 18 | Release: 1%{?dist} |
19 | 19 | License: BSD |
20 | 20 | Group: Applications/Databases |
@@ -63,7 +63,8 @@ rm -rf %{buildroot} | ||
63 | 63 | %defattr(0755,root,root) |
64 | 64 | %{_libdir}/pg_hint_plan.so |
65 | 65 | %defattr(0644,root,root) |
66 | -%{_datadir}/extension/pg_hint_plan--1.2.4.sql | |
66 | +%{_datadir}/extension/pg_hint_plan--1.2.5.sql | |
67 | +%{_datadir}/extension/pg_hint_plan--1.2.4--1.2.5.sql | |
67 | 68 | %{_datadir}/extension/pg_hint_plan--1.2.3--1.2.4.sql |
68 | 69 | %{_datadir}/extension/pg_hint_plan--1.2.2--1.2.3.sql |
69 | 70 | %{_datadir}/extension/pg_hint_plan--1.2.1--1.2.2.sql |
@@ -73,6 +74,8 @@ rm -rf %{buildroot} | ||
73 | 74 | |
74 | 75 | # History of pg_hint_plan. |
75 | 76 | %changelog |
77 | +* Thu Jan 17 2019 Kyotaro Horiguchi | |
78 | +- Fixed some bugs. Version 1.2.5. | |
76 | 79 | * Tue Nov 13 2018 Kyotaro Horiguchi |
77 | 80 | - Improvement of debug message emission. |
78 | 81 | * Fri Jun 08 2018 Kyotaro Horiguchi |
@@ -0,0 +1,6 @@ | ||
1 | +/* pg_hint_plan/pg_hint_plan--1.2.4--1.2.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 upgrading from 1.2.4. |
@@ -1,4 +1,4 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.2.4.sql */ | |
1 | +/* pg_hint_plan/pg_hint_plan--1.2.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.2.4' | |
4 | +default_version = '1.2.5' | |
5 | 5 | relocatable = false |
6 | 6 | schema = hint_plan |