firtst release
Revision | e60d971b0485b6251225d257b808e316b8ab75a5 (tree) |
---|---|
Time | 2019-01-17 17:12:27 |
Author | Kyotaro Horiguchi <horiguchi.kyotaro@lab....> |
Commiter | Kyotaro Horiguchi |
Change version to 1.3.3
Version bunped to 1.3.3. Updates the SPEC file.
@@ -5,7 +5,7 @@ | ||
5 | 5 | # |
6 | 6 | |
7 | 7 | MODULES = pg_hint_plan |
8 | -HINTPLANVER = 1.3.2 | |
8 | +HINTPLANVER = 1.3.3 | |
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 |
@@ -16,7 +16,7 @@ | ||
16 | 16 | ## Set general information for pg_store_plans. |
17 | 17 | Summary: Optimizer hint on PostgreSQL 11 |
18 | 18 | Name: pg_hint_plan11 |
19 | -Version: 1.3.2 | |
19 | +Version: 1.3.3 | |
20 | 20 | Release: 1%{?dist} |
21 | 21 | License: BSD |
22 | 22 | Group: Applications/Databases |
@@ -39,7 +39,7 @@ Note that this package is available for only PostgreSQL 11. | ||
39 | 39 | |
40 | 40 | %package llvmjit |
41 | 41 | Requires: postgresql11-server, postgresql11-llvmjit |
42 | -Requires: pg_hint_plan11 = 1.3.1 | |
42 | +Requires: pg_hint_plan11 = 1.3.3 | |
43 | 43 | Summary: Just-in-time compilation support for pg_hint_plan11 |
44 | 44 | |
45 | 45 | %description llvmjit |
@@ -73,7 +73,8 @@ rm -rf %{buildroot} | ||
73 | 73 | %defattr(0755,root,root) |
74 | 74 | %{_libdir}/pg_hint_plan.so |
75 | 75 | %defattr(0644,root,root) |
76 | -%{_datadir}/extension/pg_hint_plan--1.3.2.sql | |
76 | +%{_datadir}/extension/pg_hint_plan--1.3.2--1.3.3.sql | |
77 | +%{_datadir}/extension/pg_hint_plan--1.3.3.sql | |
77 | 78 | %{_datadir}/extension/pg_hint_plan.control |
78 | 79 | |
79 | 80 | %files llvmjit |
@@ -85,9 +86,11 @@ rm -rf %{buildroot} | ||
85 | 86 | |
86 | 87 | # History of pg_hint_plan. |
87 | 88 | %changelog |
89 | +* Thu Jan 17 2019 Kyotaro Horiguchi | |
90 | +- Fix some bugs. Version 1.3.3. | |
88 | 91 | * Tue Nov 13 2018 Kyotaro Horiguchi |
89 | 92 | - Support PostgreSQL 11. Version 1.3.2. |
90 | -* Tue Jun 08 2018 Kyotaro Horiguchi | |
93 | +* Fri Jun 08 2018 Kyotaro Horiguchi | |
91 | 94 | - Fixed a crash bug. Version 1.3.1. |
92 | 95 | * Tue Oct 10 2017 Kyotaro Horiguchi |
93 | 96 | - Support PostgreSQL 10. Version 1.3.0. |
@@ -1,6 +1,6 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.3.0--1.3.1.sql */ | |
1 | +/* pg_hint_plan/pg_hint_plan--1.3.2--1.3.3.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 |
5 | 5 | |
6 | --- nothing to do upgrading from 1.3.0. | |
6 | +-- nothing to do upgrading from 1.3.2. |
@@ -1,4 +1,4 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.3.2.sql */ | |
1 | +/* pg_hint_plan/pg_hint_plan--1.3.3.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.3.2' | |
4 | +default_version = '1.3.3' | |
5 | 5 | relocatable = false |
6 | 6 | schema = hint_plan |