• R/O
  • HTTP
  • SSH
  • HTTPS

pg_hint_plan: Commit

firtst release


Commit MetaInfo

Revision7b86e226f4e9e4b0ca6c3ee45f134284f9505285 (tree)
Time2020-08-05 16:07:45
AuthorKyotaro Horiguchi <horikyota.ntt@gmai...>
CommiterKyotaro Horiguchi

Log Message

Version 1.3.6

Fixed some bugs.

Change Summary

Incremental Difference

--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@
55 #
66
77 MODULES = pg_hint_plan
8-HINTPLANVER = 1.3.5
8+HINTPLANVER = 1.3.6
99
1010 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
1111
--- a/SPECS/pg_hint_plan11.spec
+++ b/SPECS/pg_hint_plan11.spec
@@ -16,7 +16,7 @@
1616 ## Set general information for pg_hint_plan.
1717 Summary: Optimizer hint on PostgreSQL 11
1818 Name: pg_hint_plan11
19-Version: 1.3.5
19+Version: 1.3.6
2020 Release: 1%{?dist}
2121 License: BSD
2222 Group: Applications/Databases
@@ -39,7 +39,7 @@ Note that this package is available for only PostgreSQL 11.
3939
4040 %package llvmjit
4141 Requires: postgresql11-server, postgresql11-llvmjit
42-Requires: pg_hint_plan11 = 1.3.5
42+Requires: pg_hint_plan11 = 1.3.6
4343 Summary: Just-in-time compilation support for pg_hint_plan11
4444
4545 %description llvmjit
@@ -76,7 +76,8 @@ rm -rf %{buildroot}
7676 %{_datadir}/extension/pg_hint_plan--1.3.2--1.3.3.sql
7777 %{_datadir}/extension/pg_hint_plan--1.3.3--1.3.4.sql
7878 %{_datadir}/extension/pg_hint_plan--1.3.4--1.3.5.sql
79-%{_datadir}/extension/pg_hint_plan--1.3.5.sql
79+%{_datadir}/extension/pg_hint_plan--1.3.5--1.3.6.sql
80+%{_datadir}/extension/pg_hint_plan--1.3.6.sql
8081 %{_datadir}/extension/pg_hint_plan.control
8182
8283 %files llvmjit
@@ -88,6 +89,8 @@ rm -rf %{buildroot}
8889
8990 # History of pg_hint_plan.
9091 %changelog
92+* Wed Aug 5 2020 Kyotaro Horiguchi
93+- Fix some bugs. Version 1.3.6.
9194 * Thu Feb 21 2020 Kyotaro Horiguchi
9295 - Fix some bugs. Version 1.3.5.
9396 * Thu Jan 17 2019 Kyotaro Horiguchi
--- a/pg_hint_plan--1.3.4--1.3.5.sql
+++ b/pg_hint_plan--1.3.4--1.3.5.sql
@@ -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 */
22
33 -- complain if script is sourced in psql, rather than via CREATE EXTENSION
44 \echo Use "CREATE EXTENSION pg_hint_plan" to load this file. \quit
55
6--- nothing to do upgrading from 1.3.3.
6+-- nothing to do upgrading from 1.3.4.
--- /dev/null
+++ b/pg_hint_plan--1.3.5--1.3.6.sql
@@ -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','');
--- a/pg_hint_plan--1.3.5.sql
+++ b/pg_hint_plan--1.3.6.sql
@@ -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 */
22
33 -- complain if script is sourced in psql, rather than via CREATE EXTENSION
44 \echo Use "CREATE EXTENSION pg_hint_plan" to load this file. \quit
--- a/pg_hint_plan.control
+++ b/pg_hint_plan.control
@@ -1,6 +1,6 @@
11 # pg_hint_plan extension
22
33 comment = ''
4-default_version = '1.3.5'
4+default_version = '1.3.6'
55 relocatable = false
66 schema = hint_plan
Show on old repository browser