firtst release
修订版 | d518f0364a5615e4f063f9ac099f597d1fe92cb7 (tree) |
---|---|
时间 | 2020-02-20 23:24:34 |
作者 | Kyotaro Horiguchi <horikyota.ntt@gmai...> |
Commiter | Kyotaro Horiguchi |
Preparation for branch PG12
Change version to 12-1.3.5. Adjust SPEC file.
@@ -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_store_plans. |
17 | 17 | Summary: Optimizer hint on PostgreSQL 12 |
18 | 18 | Name: pg_hint_plan12 |
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 12. | ||
39 | 39 | |
40 | 40 | %package llvmjit |
41 | 41 | Requires: postgresql12-server, postgresql12-llvmjit |
42 | -Requires: pg_hint_plan12 = 1.3.4 | |
42 | +Requires: pg_hint_plan12 = 1.3.5 | |
43 | 43 | Summary: Just-in-time compilation support for pg_hint_plan12 |
44 | 44 | |
45 | 45 | %description llvmjit |
@@ -73,11 +73,7 @@ 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.0--1.3.1.sql | |
77 | -%{_datadir}/extension/pg_hint_plan--1.3.1--1.3.2.sql | |
78 | -%{_datadir}/extension/pg_hint_plan--1.3.2--1.3.3.sql | |
79 | -%{_datadir}/extension/pg_hint_plan--1.3.3--1.3.4.sql | |
80 | -%{_datadir}/extension/pg_hint_plan--1.3.4.sql | |
76 | +%{_datadir}/extension/pg_hint_plan--1.3.5.sql | |
81 | 77 | %{_datadir}/extension/pg_hint_plan.control |
82 | 78 | |
83 | 79 | %files llvmjit |
@@ -89,6 +85,8 @@ rm -rf %{buildroot} | ||
89 | 85 | |
90 | 86 | # History of pg_hint_plan. |
91 | 87 | %changelog |
88 | +* Thu Feb 20 2020 Kyotaro Horiguchi | |
89 | +- Support PostgreSQL 12. Fix some bugs. Version 1.3.5. | |
92 | 90 | * Thu Jan 17 2019 Kyotaro Horiguchi |
93 | 91 | - Fix some bugs. Version 1.3.4. |
94 | 92 | * Tue Nov 13 2018 Kyotaro Horiguchi |
@@ -1,6 +0,0 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.3.0--1.3.1.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.0. |
@@ -1,6 +0,0 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.3.1--1.3.2.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.1. |
@@ -1,6 +0,0 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.3.2--1.3.3.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.2. |
@@ -1,6 +0,0 @@ | ||
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 |