firtst release
リビジョン | 68b706a74484776551124c440ad6f1b005c0bbb4 (tree) |
---|---|
日時 | 2018-06-08 14:42:52 |
作者 | Kyotaro Horiguchi <horiguchi.kyotaro@lab....> |
コミッター | Kyotaro Horiguchi |
Change version to 1.1.6.
1.1.5 has a crash bug in Describe message of extended protocol
path. If server receives the message after invalidation of
corresponding query cache, pg_hint_plan crashes.
On the way fixing it, this version took in the following commit of
core.
9680c120e5 Change more places to be less trusting of RestrictInfo.is_pushed_down.
@@ -1,4 +1,4 @@ | ||
1 | -Copyright (c) 2012-2017, NIPPON TELEGRAPH AND TELEPHONE CORPORATION | |
1 | +Copyright (c) 2012-2018, NIPPON TELEGRAPH AND TELEPHONE CORPORATION | |
2 | 2 | All rights reserved. |
3 | 3 | |
4 | 4 | Redistribution and use in source and binary forms, with or without |
@@ -1,11 +1,11 @@ | ||
1 | 1 | # |
2 | 2 | # pg_hint_plan: Makefile |
3 | 3 | # |
4 | -# Copyright (c) 2012-2017, NIPPON TELEGRAPH AND TELEPHONE CORPORATION | |
4 | +# Copyright (c) 2012-2018, NIPPON TELEGRAPH AND TELEPHONE CORPORATION | |
5 | 5 | # |
6 | 6 | |
7 | 7 | MODULES = pg_hint_plan |
8 | -HINTPLANVER = 1.1.5 | |
8 | +HINTPLANVER = 1.1.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-T ut-fini |
11 | 11 |
@@ -14,8 +14,9 @@ REGRESSION_EXPECTED = expected/init.out expected/base_plan.out expected/pg_hint_ | ||
14 | 14 | REGRESS_OPTS = --encoding=UTF8 |
15 | 15 | |
16 | 16 | EXTENSION = pg_hint_plan |
17 | -DATA = pg_hint_plan--1.1.5.sql pg_hint_plan--1.1.3--1.1.4.sql \ | |
18 | - pg_hint_plan--1.1.4--1.1.5.sql pg_hint_plan--1.1.2--1.1.3.sql | |
17 | +DATA = pg_hint_plan--1.1.6.sql pg_hint_plan--1.1.5--1.1.6.sql \ | |
18 | + pg_hint_plan--1.1.4--1.1.5.sql pg_hint_plan--1.1.3--1.1.4.sql \ | |
19 | + pg_hint_plan--1.1.2--1.1.3.sql | |
19 | 20 | |
20 | 21 | EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out |
21 | 22 |
@@ -1,5 +1,5 @@ | ||
1 | 1 | # SPEC file for pg_hint_plan |
2 | -# Copyright(C) 2012-2017 NIPPON TELEGRAPH AND TELEPHONE CORPORATION | |
2 | +# Copyright(C) 2012-2018 NIPPON TELEGRAPH AND TELEPHONE CORPORATION | |
3 | 3 | |
4 | 4 | %define _pgdir /usr/pgsql-9.3 |
5 | 5 | %define _bindir %{_pgdir}/bin |
@@ -13,7 +13,7 @@ | ||
13 | 13 | ## Set general information for pg_hint_plan. |
14 | 14 | Summary: Optimizer hint for PostgreSQL 9.3 |
15 | 15 | Name: pg_hint_plan93 |
16 | -Version: 1.1.5 | |
16 | +Version: 1.1.6 | |
17 | 17 | Release: 1%{?dist} |
18 | 18 | License: BSD |
19 | 19 | Group: Applications/Databases |
@@ -60,7 +60,8 @@ rm -rf %{buildroot} | ||
60 | 60 | install -d %{buildroot}%{_libdir} |
61 | 61 | install pg_hint_plan.so %{buildroot}%{_libdir}/pg_hint_plan.so |
62 | 62 | install -d %{buildroot}%{_datadir}/extension |
63 | -install -m 644 pg_hint_plan--1.1.5.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.5.sql | |
63 | +install -m 644 pg_hint_plan--1.1.6.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.6.sql | |
64 | +install -m 644 pg_hint_plan--1.1.5--1.1.6.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.5--1.1.6.sql | |
64 | 65 | install -m 644 pg_hint_plan--1.1.4--1.1.5.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.4--1.1.5.sql |
65 | 66 | install -m 644 pg_hint_plan--1.1.3--1.1.4.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql |
66 | 67 | install -m 644 pg_hint_plan--1.1.2--1.1.3.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.2--1.1.3.sql |
@@ -73,7 +74,8 @@ rm -rf %{buildroot} | ||
73 | 74 | %defattr(0755,root,root) |
74 | 75 | %{_libdir}/pg_hint_plan.so |
75 | 76 | %defattr(0644,root,root) |
76 | -%{_datadir}/extension/pg_hint_plan--1.1.5.sql | |
77 | +%{_datadir}/extension/pg_hint_plan--1.1.6.sql | |
78 | +%{_datadir}/extension/pg_hint_plan--1.1.5--1.1.6.sql | |
77 | 79 | %{_datadir}/extension/pg_hint_plan--1.1.4--1.1.5.sql |
78 | 80 | %{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql |
79 | 81 | %{_datadir}/extension/pg_hint_plan--1.1.2--1.1.3.sql |
@@ -81,6 +83,8 @@ rm -rf %{buildroot} | ||
81 | 83 | |
82 | 84 | # History of pg_hint_plan. |
83 | 85 | %changelog |
86 | +* Fri Jun 08 2018 Kyotaro Horiguchi | |
87 | +- Fixed a crash bug. | |
84 | 88 | * Thu Jul 27 2017 Kyotaro Horiguchi |
85 | 89 | - Fixed a crash bug. |
86 | 90 | * Fri May 19 2017 Kyotaro Horiguchi |
@@ -0,0 +1,4 @@ | ||
1 | +/* pg_hint_plan/pg_hint_plan--1.1.5-1.1.6.sql */ | |
2 | + | |
3 | +-- complain if script is sourced in psql, rather than via CREATE EXTENSION | |
4 | +\echo Use "ALTER EXTENSION pg_hint_plan UPDATE" to load this file. \quit |
@@ -1,6 +1,6 @@ | ||
1 | 1 | # pg_hint_plan extension |
2 | 2 | |
3 | 3 | comment = '' |
4 | -default_version = '1.1.5' | |
4 | +default_version = '1.1.6' | |
5 | 5 | relocatable = false |
6 | 6 | schema = hint_plan |