firtst release
Revision | 10efd8abd59ca67fc9e490306de6e92a73da969a (tree) |
---|---|
Time | 2020-02-20 21:56:30 |
Author | Kyotaro Horiguchi <horikyota.ntt@gmai...> |
Commiter | Kyotaro Horiguchi |
Change version to 1.3.5.
@@ -5,7 +5,7 @@ | ||
5 | 5 | # |
6 | 6 | |
7 | 7 | MODULES = pg_hint_plan |
8 | -HINTPLANVER = 1.3.4 | |
8 | +HINTPLANVER = 1.3.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 |
@@ -16,7 +16,7 @@ | ||
16 | 16 | ## Set general information for pg_hint_plan. |
17 | 17 | Summary: Optimizer hint on PostgreSQL 11 |
18 | 18 | Name: pg_hint_plan11 |
19 | -Version: 1.3.4 | |
19 | +Version: 1.3.5 | |
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.4 | |
42 | +Requires: pg_hint_plan11 = 1.3.5 | |
43 | 43 | Summary: Just-in-time compilation support for pg_hint_plan11 |
44 | 44 | |
45 | 45 | %description llvmjit |
@@ -75,7 +75,8 @@ rm -rf %{buildroot} | ||
75 | 75 | %defattr(0644,root,root) |
76 | 76 | %{_datadir}/extension/pg_hint_plan--1.3.2--1.3.3.sql |
77 | 77 | %{_datadir}/extension/pg_hint_plan--1.3.3--1.3.4.sql |
78 | -%{_datadir}/extension/pg_hint_plan--1.3.4.sql | |
78 | +%{_datadir}/extension/pg_hint_plan--1.3.4--1.3.5.sql | |
79 | +%{_datadir}/extension/pg_hint_plan--1.3.5.sql | |
79 | 80 | %{_datadir}/extension/pg_hint_plan.control |
80 | 81 | |
81 | 82 | %files llvmjit |
@@ -87,6 +88,8 @@ rm -rf %{buildroot} | ||
87 | 88 | |
88 | 89 | # History of pg_hint_plan. |
89 | 90 | %changelog |
91 | +* Thu Feb 21 2020 Kyotaro Horiguchi | |
92 | +- Fix some bugs. Version 1.3.5. | |
90 | 93 | * Thu Jan 17 2019 Kyotaro Horiguchi |
91 | 94 | - Fix some bugs. Version 1.3.4. |
92 | 95 | * Tue Nov 13 2018 Kyotaro Horiguchi |
@@ -1,6 +1,6 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.3.3--1.3.4.sql */ | |
1 | +/* pg_hint_plan/pg_hint_plan--1.3.4--1.3.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 |
5 | 5 | |
6 | --- nothing to do upgrading from 1.3.3. | |
6 | +-- nothing to do upgrading from 1.3.4. |
@@ -0,0 +1,6 @@ | ||
1 | +/* pg_hint_plan/pg_hint_plan--1.3.3--1.3.4.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.3.3. |
@@ -1,4 +1,4 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.3.4.sql */ | |
1 | +/* pg_hint_plan/pg_hint_plan--1.3.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.3.4' | |
4 | +default_version = '1.3.5' | |
5 | 5 | relocatable = false |
6 | 6 | schema = hint_plan |