• R/O
  • HTTP
  • SSH
  • HTTPS

pg_hint_plan: Commit

firtst release


Commit MetaInfo

Révisiond25d592932a9a211b0eafb68c0395cadc1d2e86a (tree)
l'heure2020-08-05 16:45:17
AuteurKyotaro Horiguchi <horikyota.ntt@gmai...>
CommiterKyotaro Horiguchi

Message de Log

Version 1.2.7.
Fixed some bugs.

Change Summary

Modification

--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@
55 #
66
77 MODULES = pg_hint_plan
8-HINTPLANVER = 1.2.6
8+HINTPLANVER = 1.2.7
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_plan96.spec
+++ b/SPECS/pg_hint_plan96.spec
@@ -14,7 +14,7 @@
1414 ## Set general information for pg_hint_plan.
1515 Summary: Optimizer hint on PostgreSQL 9.6
1616 Name: pg_hint_plan96
17-Version: 1.2.6
17+Version: 1.2.7
1818 Release: 1%{?dist}
1919 License: BSD
2020 Group: Applications/Databases
@@ -63,7 +63,8 @@ rm -rf %{buildroot}
6363 %defattr(0755,root,root)
6464 %{_libdir}/pg_hint_plan.so
6565 %defattr(0644,root,root)
66-%{_datadir}/extension/pg_hint_plan--1.2.6.sql
66+%{_datadir}/extension/pg_hint_plan--1.2.7.sql
67+%{_datadir}/extension/pg_hint_plan--1.2.6--1.2.7.sql
6768 %{_datadir}/extension/pg_hint_plan--1.2.5--1.2.6.sql
6869 %{_datadir}/extension/pg_hint_plan--1.2.4--1.2.5.sql
6970 %{_datadir}/extension/pg_hint_plan--1.2.3--1.2.4.sql
@@ -75,6 +76,8 @@ rm -rf %{buildroot}
7576
7677 # History of pg_hint_plan.
7778 %changelog
79+* Wed Aug 5 2020 Kyotaro Horiguchi
80+- Fixed some bugs. Version 1.2.7.
7881 * Thu Feb 21 2020 Kyotaro Horiguchi
7982 - Fixed some bugs. Version 1.2.6.
8083 * Thu Jan 17 2019 Kyotaro Horiguchi
--- /dev/null
+++ b/pg_hint_plan--1.2.6--1.2.7.sql
@@ -0,0 +1,7 @@
1+/* pg_hint_plan/pg_hint_plan--1.2.6--1.2.7.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.2.6.sql
+++ b/pg_hint_plan--1.2.7.sql
@@ -1,4 +1,4 @@
1-/* pg_hint_plan/pg_hint_plan--1.2.6.sql */
1+/* pg_hint_plan/pg_hint_plan--1.2.7.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.2.6'
4+default_version = '1.2.7'
55 relocatable = false
66 schema = hint_plan
Afficher sur ancien navigateur de dépôt.