firtst release
Revision | a797bcf944d7f5c17d6d26cdaa2c57ef50b73a81 (tree) |
---|---|
Zeit | 2020-10-29 21:12:16 |
Autor | Kyotaro Horiguchi <horikyoga.ntt@gmai...> |
Commiter | Kyotaro Horiguchi |
Change version to 1.3.7.
Fixed bogus upgrade scripts on the way changing version.
@@ -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_hint_plan. |
17 | 17 | Summary: Optimizer hint on PostgreSQL 11 |
18 | 18 | Name: pg_hint_plan11 |
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 11. | ||
39 | 39 | |
40 | 40 | %package llvmjit |
41 | 41 | Requires: postgresql11-server, postgresql11-llvmjit |
42 | -Requires: pg_hint_plan11 = 1.3.6 | |
42 | +Requires: pg_hint_plan11 = 1.3.7 | |
43 | 43 | Summary: Just-in-time compilation support for pg_hint_plan11 |
44 | 44 | |
45 | 45 | %description llvmjit |
@@ -77,7 +77,8 @@ rm -rf %{buildroot} | ||
77 | 77 | %{_datadir}/extension/pg_hint_plan--1.3.3--1.3.4.sql |
78 | 78 | %{_datadir}/extension/pg_hint_plan--1.3.4--1.3.5.sql |
79 | 79 | %{_datadir}/extension/pg_hint_plan--1.3.5--1.3.6.sql |
80 | -%{_datadir}/extension/pg_hint_plan--1.3.6.sql | |
80 | +%{_datadir}/extension/pg_hint_plan--1.3.6--1.3.7.sql | |
81 | +%{_datadir}/extension/pg_hint_plan--1.3.7.sql | |
81 | 82 | %{_datadir}/extension/pg_hint_plan.control |
82 | 83 | |
83 | 84 | %files llvmjit |
@@ -89,6 +90,8 @@ rm -rf %{buildroot} | ||
89 | 90 | |
90 | 91 | # History of pg_hint_plan. |
91 | 92 | %changelog |
93 | +* Thu Oct 29 2020 Kyotaro Horiguchi | |
94 | +- Fix a bug. Version 1.3.7. | |
92 | 95 | * Wed Aug 5 2020 Kyotaro Horiguchi |
93 | 96 | - Fix some bugs. Version 1.3.6. |
94 | 97 | * Thu Feb 21 2020 Kyotaro Horiguchi |
@@ -1,6 +1,7 @@ | ||
1 | 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 | -\echo Use "CREATE EXTENSION pg_hint_plan" to load this file. \quit | |
4 | +\echo Use "ALTER EXTENSION pg_dbms_stats UPDATE TO '1.3.3'" to load this file. | |
5 | +\quit | |
5 | 6 | |
6 | 7 | -- nothing to do upgrading from 1.3.2. |
@@ -1,6 +1,7 @@ | ||
1 | 1 | /* pg_hint_plan/pg_hint_plan--1.3.3--1.3.4.sql */ |
2 | 2 | |
3 | 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 | |
4 | +\echo Use "ALTER EXTENSION pg_dbms_stats UPDATE TO '1.3.4'" to load this file. | |
5 | +\quit | |
5 | 6 | |
6 | 7 | -- nothing to do upgrading from 1.3.3. |
@@ -1,6 +1,7 @@ | ||
1 | 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 | -\echo Use "CREATE EXTENSION pg_hint_plan" to load this file. \quit | |
4 | +\echo Use "ALTER EXTENSION pg_dbms_stats UPDATE TO '1.3.5'" to load this file. | |
5 | +\quit | |
5 | 6 | |
6 | 7 | -- nothing to do upgrading from 1.3.4. |
@@ -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 CREATE 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 |