firtst release
Revision | c44dcca707a461aa43a6b916b7c5002863c8843f (tree) |
---|---|
Zeit | 2020-08-05 16:25:39 |
Autor | Kyotaro Horiguchi <horikyota.ntt@gmai...> |
Commiter | Kyotaro Horiguchi |
Version 1.3.6.
Fixed some bugs.
@@ -5,7 +5,7 @@ | ||
5 | 5 | # |
6 | 6 | |
7 | 7 | MODULES = pg_hint_plan |
8 | -HINTPLANVER = 1.3.5 | |
8 | +HINTPLANVER = 1.3.6 | |
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 |
@@ -14,7 +14,7 @@ | ||
14 | 14 | ## Set general information for pg_hint_plan. |
15 | 15 | Summary: Optimizer hint on PostgreSQL 10 |
16 | 16 | Name: pg_hint_plan10 |
17 | -Version: 1.3.5 | |
17 | +Version: 1.3.6 | |
18 | 18 | Release: 1%{?dist} |
19 | 19 | License: BSD |
20 | 20 | Group: Applications/Databases |
@@ -67,11 +67,14 @@ rm -rf %{buildroot} | ||
67 | 67 | %{_datadir}/extension/pg_hint_plan--1.3.1--1.3.2.sql |
68 | 68 | %{_datadir}/extension/pg_hint_plan--1.3.2--1.3.3.sql |
69 | 69 | %{_datadir}/extension/pg_hint_plan--1.3.3--1.3.5.sql |
70 | -%{_datadir}/extension/pg_hint_plan--1.3.5.sql | |
70 | +%{_datadir}/extension/pg_hint_plan--1.3.5--1.3.6.sql | |
71 | +%{_datadir}/extension/pg_hint_plan--1.3.6.sql | |
71 | 72 | %{_datadir}/extension/pg_hint_plan.control |
72 | 73 | |
73 | 74 | # History of pg_hint_plan. |
74 | 75 | %changelog |
76 | +* Wed Aug 5 2020 Kyotaro Horiguchi | |
77 | +- Fix some bugs. Version 1.3.6. | |
75 | 78 | * Thu Feb 21 2020 Kyotaro Horiguchi |
76 | 79 | - Fix some bugs. Version 1.3.5. |
77 | 80 | * Thu Jan 17 2019 Kyotaro Horiguchi |
@@ -0,0 +1,7 @@ | ||
1 | +/* pg_hint_plan/pg_hint_plan--1.3.5--1.3.6.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 | +SELECT pg_catalog.pg_extension_config_dump('hint_plan.hints',''); | |
7 | +SELECT pg_catalog.pg_extension_config_dump('hint_plan.hints_id_seq',''); |
@@ -1,4 +1,4 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.3.5.sql */ | |
1 | +/* pg_hint_plan/pg_hint_plan--1.3.6.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.5' | |
4 | +default_version = '1.3.6' | |
5 | 5 | relocatable = false |
6 | 6 | schema = hint_plan |