firtst release
修訂 | afe29b4bff1516f2e3391cb4fe8a9774e7719725 (tree) |
---|---|
時間 | 2020-10-29 21:09:36 |
作者 | Kyotaro Horiguchi <horikyoga.ntt@gmai...> |
Commiter | Kyotaro Horiguchi |
Change version to 1.3.7.
@@ -5,7 +5,7 @@ | ||
5 | 5 | # |
6 | 6 | |
7 | 7 | MODULES = pg_hint_plan |
8 | -HINTPLANVER = 1.3.6 | |
8 | +HINTPLANVER = 1.3.7 | |
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.6 | |
19 | +Version: 1.3.7 | |
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.6 | |
42 | +Requires: pg_hint_plan12 = 1.3.7 | |
43 | 43 | Summary: Just-in-time compilation support for pg_hint_plan12 |
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.6.sql | |
76 | +%{_datadir}/extension/pg_hint_plan--1.3.7.sql | |
77 | +%{_datadir}/extension/pg_hint_plan--1.3.6--1.3.7.sql | |
77 | 78 | %{_datadir}/extension/pg_hint_plan--1.3.5--1.3.6.sql |
78 | 79 | %{_datadir}/extension/pg_hint_plan.control |
79 | 80 |
@@ -86,19 +87,9 @@ rm -rf %{buildroot} | ||
86 | 87 | |
87 | 88 | # History of pg_hint_plan. |
88 | 89 | %changelog |
90 | +* Thu Oct 29 2020 Kyotaro Horiguchi | |
91 | +- Fix a bug. Version 1.3.7. | |
89 | 92 | * Wed Aug 5 2020 Kyotaro Horiguchi |
90 | 93 | - Fix some bugs. Version 1.3.6. |
91 | 94 | * Thu Feb 20 2020 Kyotaro Horiguchi |
92 | 95 | - Support PostgreSQL 12. Fix some bugs. Version 1.3.5. |
93 | -* Thu Jan 17 2019 Kyotaro Horiguchi | |
94 | -- Fix some bugs. Version 1.3.4. | |
95 | -* Tue Nov 13 2018 Kyotaro Horiguchi | |
96 | -- Support PostgreSQL 11. Version 1.3.2. | |
97 | -* Fri Jun 08 2018 Kyotaro Horiguchi | |
98 | -- Fixed a crash bug. Version 1.3.1. | |
99 | -* Tue Oct 10 2017 Kyotaro Horiguchi | |
100 | -- Support PostgreSQL 10. Version 1.3.0. | |
101 | -* Tue Feb 7 2017 Kyotaro Horiguchi | |
102 | -- Added new hint Parallel. Version 1.2.0. | |
103 | -* Thu Jul 21 2016 Kyotaro Horiguchi | |
104 | -- Support PostgreSQL 9.6 |
@@ -1,7 +1,4 @@ | ||
1 | 1 | /* pg_hint_plan/pg_hint_plan--1.3.5--1.3.6.sql */ |
2 | 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 | 3 | SELECT pg_catalog.pg_extension_config_dump('hint_plan.hints',''); |
7 | 4 | SELECT pg_catalog.pg_extension_config_dump('hint_plan.hints_id_seq',''); |
@@ -0,0 +1,5 @@ | ||
1 | +/* pg_hint_plan/pg_hint_plan--1.3.6--1.3.7.sql */ | |
2 | + | |
3 | +-- complain if script is sourced in psql, rather than via ALTER EXTENSION | |
4 | +\echo Use "ALTER EXTENSION pg_dbms_stats UPDATE TO '1.3.7'" to load this file. | |
5 | +\quit |
@@ -1,4 +1,4 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.3.6.sql */ | |
1 | +/* pg_hint_plan/pg_hint_plan--1.3.7.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.6' | |
4 | +default_version = '1.3.7' | |
5 | 5 | relocatable = false |
6 | 6 | schema = hint_plan |