firtst release
修訂 | 00256f95cd05d9fa6d1c62661929be47ba107ef0 (tree) |
---|---|
時間 | 2017-05-19 13:53:54 |
作者 | Kyotaro Horiguchi <horiguchi.kyotaro@lab....> |
Commiter | Kyotaro Horiguchi |
Change version to 1.1.4
1.1.3 has a crash bug raised by queries in specific shape involving
complex views and/or SQL functions.
It is fixed in this version.
@@ -1,4 +1,4 @@ | ||
1 | -Copyright (c) 2012-2016, NIPPON TELEGRAPH AND TELEPHONE CORPORATION | |
1 | +Copyright (c) 2012-2017, 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-2015, NIPPON TELEGRAPH AND TELEPHONE CORPORATION | |
4 | +# Copyright (c) 2012-2017, NIPPON TELEGRAPH AND TELEPHONE CORPORATION | |
5 | 5 | # |
6 | 6 | |
7 | 7 | MODULES = pg_hint_plan |
8 | -HINTPLANVER = 1.1.3 | |
8 | +HINTPLANVER = 1.1.4 | |
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-fini |
11 | 11 |
@@ -14,7 +14,7 @@ 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.3.sql | |
17 | +DATA = pg_hint_plan--1.1.4.sql pg_hint_plan--1.1.3--1.1.4.sql | |
18 | 18 | |
19 | 19 | EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out |
20 | 20 |
@@ -32,6 +32,8 @@ TARSOURCES = Makefile *.c *.h COPYRIGHT* \ | ||
32 | 32 | doc/* expected/*.out sql/*.sql sql/maskout.sh \ |
33 | 33 | data/data.csv input/*.source output/*.source SPECS/*.spec |
34 | 34 | |
35 | +LDFLAGS+=-Wl,--build-id | |
36 | + | |
35 | 37 | installcheck: $(REGRESSION_EXPECTED) |
36 | 38 | |
37 | 39 | rpms: rpm95 |
@@ -1,5 +1,5 @@ | ||
1 | 1 | # SPEC file for pg_store_plans |
2 | -# Copyright(C) 2016 NIPPON TELEGRAPH AND TELEPHONE CORPORATION | |
2 | +# Copyright(C) 2016-2017 NIPPON TELEGRAPH AND TELEPHONE CORPORATION | |
3 | 3 | |
4 | 4 | %define _pgdir /usr/pgsql-9.5 |
5 | 5 | %define _bindir %{_pgdir}/bin |
@@ -13,7 +13,7 @@ | ||
13 | 13 | ## Set general information for pg_store_plans. |
14 | 14 | Summary: Optimizer hint on PostgreSQL 9.5 |
15 | 15 | Name: pg_hint_plan95 |
16 | -Version: 1.1.3 | |
16 | +Version: 1.1.4 | |
17 | 17 | Release: 1%{?dist} |
18 | 18 | License: BSD |
19 | 19 | Group: Applications/Databases |
@@ -56,7 +56,8 @@ rm -rf %{buildroot} | ||
56 | 56 | install -d %{buildroot}%{_libdir} |
57 | 57 | install pg_hint_plan.so %{buildroot}%{_libdir}/pg_hint_plan.so |
58 | 58 | install -d %{buildroot}%{_datadir}/extension |
59 | -install -m 644 pg_hint_plan--1.1.3.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.3.sql | |
59 | +install -m 644 pg_hint_plan--1.1.4.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.4.sql | |
60 | +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 | |
60 | 61 | install -m 644 pg_hint_plan.control %{buildroot}%{_datadir}/extension/pg_hint_plan.control |
61 | 62 | |
62 | 63 | %clean |
@@ -66,11 +67,14 @@ rm -rf %{buildroot} | ||
66 | 67 | %defattr(0755,root,root) |
67 | 68 | %{_libdir}/pg_hint_plan.so |
68 | 69 | %defattr(0644,root,root) |
69 | -%{_datadir}/extension/pg_hint_plan--1.1.3.sql | |
70 | +%{_datadir}/extension/pg_hint_plan--1.1.4.sql | |
71 | +%{_datadir}/extension/pg_hint_plan--1.1.3--1.1.4.sql | |
70 | 72 | %{_datadir}/extension/pg_hint_plan.control |
71 | 73 | |
72 | 74 | # History of pg_hint_plan. |
73 | 75 | %changelog |
76 | +* Fri May 19 2017 Kyotaro Horiguchi | |
77 | +- Fixed a crash bug. | |
74 | 78 | * Fri May 13 2016 Kyotaro Horiguchi |
75 | 79 | - Support PostgreSQL 9.5 |
76 | 80 |
@@ -0,0 +1,6 @@ | ||
1 | +/* pg_hint_plan/pg_hint_plan--1.1.3--1.1.4.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 | +-- Nothing to do from 1.1.3 |
@@ -1,4 +1,4 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.1.3.sql */ | |
1 | +/* pg_hint_plan/pg_hint_plan--1.1.4.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.1.3' | |
4 | +default_version = '1.1.4' | |
5 | 5 | relocatable = false |
6 | 6 | schema = hint_plan |