firtst release
Revision | 02823d0bb8b33211e102e02ab5203cd0a5cc651a (tree) |
---|---|
Time | 2014-12-22 21:17:00 |
Author | Kyotaro Horiguchi <horiguchi.kyotaro@lab....> |
Commiter | Kyotaro Horiguchi |
Prepare for 1.1.3.
@@ -5,7 +5,7 @@ | ||
5 | 5 | # |
6 | 6 | |
7 | 7 | MODULES = pg_hint_plan |
8 | -HINTPLANVER = 1.1.2 | |
8 | +HINTPLANVER = 1.1.3 | |
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.2.sql | |
17 | +DATA = pg_hint_plan--1.1.3.sql pg_hint_plan--1.1.2--1.1.3.sql | |
18 | 18 | |
19 | 19 | EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out |
20 | 20 |
@@ -13,7 +13,7 @@ | ||
13 | 13 | ## Set general information for pg_hint_plan. |
14 | 14 | Summary: Optimizer hint for PostgreSQL 9.4 |
15 | 15 | Name: pg_hint_plan94 |
16 | -Version: 1.1.2 | |
16 | +Version: 1.1.3 | |
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.2.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.2.sql | |
63 | +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 | |
64 | +install -m 644 pg_hint_plan--1.1.3.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.3.sql | |
64 | 65 | install -m 644 pg_hint_plan.control %{buildroot}%{_datadir}/extension/pg_hint_plan.control |
65 | 66 | |
66 | 67 | %clean |
@@ -70,11 +71,16 @@ rm -rf %{buildroot} | ||
70 | 71 | %defattr(0755,root,root) |
71 | 72 | %{_libdir}/pg_hint_plan.so |
72 | 73 | %defattr(0644,root,root) |
73 | -%{_datadir}/extension/pg_hint_plan--1.1.2.sql | |
74 | +%{_datadir}/extension/pg_hint_plan--1.1.2--1.1.3.sql | |
75 | +%{_datadir}/extension/pg_hint_plan--1.1.3.sql | |
74 | 76 | %{_datadir}/extension/pg_hint_plan.control |
75 | 77 | |
76 | 78 | # History of pg_hint_plan. |
77 | 79 | %changelog |
80 | +* Thu Dec 22 2014 Kyotaro Horiguchi | |
81 | +- Bug fix related to pl/pgsql. | |
82 | +* Thu Dec 17 2014 Kyotaro Horiguchi | |
83 | +- Support 9.4. New rev 1.1.2. | |
78 | 84 | * Thu Dec 17 2014 Kyotaro Horiguchi |
79 | 85 | - Support 9.4. New rev 1.1.2. |
80 | 86 | * Mon Sep 02 2013 Takashi Suzuki |
@@ -0,0 +1,4 @@ | ||
1 | +/* pg_hint_plan/pg_hint_plan--1.1.2--1.1.3.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,4 +1,4 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.1.2.sql */ | |
1 | +/* pg_hint_plan/pg_hint_plan--1.1.3.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.2' | |
4 | +default_version = '1.1.3' | |
5 | 5 | relocatable = false |
6 | 6 | schema = hint_plan |