firtst release
Revision | 0973d0d739ad37c20bd8bb24db79e12371da2eb7 (tree) |
---|---|
Zeit | 2017-10-10 12:33:01 |
Autor | Kyotaro Horiguchi <horiguchi.kyotaro@lab....> |
Commiter | Kyotaro Horiguchi |
Change version to 1.3.0
@@ -5,7 +5,7 @@ | ||
5 | 5 | # |
6 | 6 | |
7 | 7 | MODULES = pg_hint_plan |
8 | -HINTPLANVER = 1.2.0 | |
8 | +HINTPLANVER = 1.3.0 | |
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-W ut-T 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.2.0.sql pg_hint_plan--1.1.3--1.2.0.sql | |
17 | +DATA = pg_hint_plan--1.3.0.sql | |
18 | 18 | |
19 | 19 | EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out RPMS |
20 | 20 |
@@ -14,7 +14,7 @@ | ||
14 | 14 | ## Set general information for pg_store_plans. |
15 | 15 | Summary: Optimizer hint on PostgreSQL 10 |
16 | 16 | Name: pg_hint_plan10 |
17 | -Version: 1.2.0 | |
17 | +Version: 1.3.0 | |
18 | 18 | Release: 1%{?dist} |
19 | 19 | License: BSD |
20 | 20 | Group: Applications/Databases |
@@ -57,8 +57,7 @@ rm -rf %{buildroot} | ||
57 | 57 | install -d %{buildroot}%{_libdir} |
58 | 58 | install pg_hint_plan.so %{buildroot}%{_libdir}/pg_hint_plan.so |
59 | 59 | install -d %{buildroot}%{_datadir}/extension |
60 | -install -m 644 pg_hint_plan--1.2.0.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.2.0.sql | |
61 | -install -m 644 pg_hint_plan--1.1.3--1.2.0.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.1.3--1.2.0.sql | |
60 | +install -m 644 pg_hint_plan--1.3.0.sql %{buildroot}%{_datadir}/extension/pg_hint_plan--1.3.0.sql | |
62 | 61 | install -m 644 pg_hint_plan.control %{buildroot}%{_datadir}/extension/pg_hint_plan.control |
63 | 62 | |
64 | 63 | %clean |
@@ -68,12 +67,13 @@ rm -rf %{buildroot} | ||
68 | 67 | %defattr(0755,root,root) |
69 | 68 | %{_libdir}/pg_hint_plan.so |
70 | 69 | %defattr(0644,root,root) |
71 | -%{_datadir}/extension/pg_hint_plan--1.2.0.sql | |
72 | -%{_datadir}/extension/pg_hint_plan--1.1.3--1.2.0.sql | |
70 | +%{_datadir}/extension/pg_hint_plan--1.3.0.sql | |
73 | 71 | %{_datadir}/extension/pg_hint_plan.control |
74 | 72 | |
75 | 73 | # History of pg_hint_plan. |
76 | 74 | %changelog |
75 | +* Tue Oct 10 2017 Kyotaro Horiguchi | |
76 | +- Support PostgreSQL 10. Version 1.3.0. | |
77 | 77 | * Tue Feb 7 2017 Kyotaro Horiguchi |
78 | 78 | - Added new hint Parallel. Version 1.2.0. |
79 | 79 | * Thu Jul 21 2016 Kyotaro Horiguchi |
@@ -10,7 +10,7 @@ | ||
10 | 10 | </head> |
11 | 11 | |
12 | 12 | <body> |
13 | -<h1 id="pg_hint_plan">pg_hint_plan 1.2 付録</h1> | |
13 | +<h1 id="pg_hint_plan">pg_hint_plan 1.3 付録</h1> | |
14 | 14 | <div class="navigation"> |
15 | 15 | <a href="pg_hint_plan-ja.html">pg_hint_plan</a> > |
16 | 16 | <a href="hint_list-ja.html">Appendix A. ヒント句一覧</a> |
@@ -10,7 +10,7 @@ | ||
10 | 10 | </head> |
11 | 11 | |
12 | 12 | <body> |
13 | -<h1 id="pg_hint_plan">pg_hint_plan 1.2</h1> | |
13 | +<h1 id="pg_hint_plan">pg_hint_plan 1.3</h1> | |
14 | 14 | <div class="navigation"> |
15 | 15 | <a href="pg_hint_plan-ja.html">pg_hint_plan</a> |
16 | 16 | </div> |
@@ -675,12 +675,12 @@ postgres=# | ||
675 | 675 | </dl> |
676 | 676 | |
677 | 677 | <h2 id="requirement">動作環境</h2> |
678 | -pg_hint_plan 1.2 は PostgreSQL 9.6 のみをサポートします。 | |
678 | +pg_hint_plan 1.3 は PostgreSQL 10 のみをサポートします。 | |
679 | 679 | <dl> |
680 | 680 | <dt>PostgreSQL</dt> |
681 | - <dd>バージョン 9.6</dd> | |
681 | + <dd>バージョン 10</dd> | |
682 | 682 | <dt>動作確認済みOS</dt> |
683 | - <dd>RHEL 7.3</dd> | |
683 | + <dd>CentOS 7.4</dd> | |
684 | 684 | </dl> |
685 | 685 | |
686 | 686 | <h2 id="seealso">関連項目</h2> |
@@ -18,7 +18,7 @@ pre { margin: 0 2em 0 2em; padding:0.3em; border-style: solid; border-width:0.1e | ||
18 | 18 | </head> |
19 | 19 | |
20 | 20 | <body> |
21 | -<h1 id="pg_hint_plan">pg_hint_plan 1.2</h1> | |
21 | +<h1 id="pg_hint_plan">pg_hint_plan 1.3</h1> | |
22 | 22 | <div class="navigation"> |
23 | 23 | <a href="pg_hint_plan-ja.html">pg_hint_plan</a> |
24 | 24 | </div> |
@@ -482,12 +482,12 @@ from executed in parallel.</dd> | ||
482 | 482 | <p>pg_stat_statements generates a query id ignoring comments. As the result the identical queires with different hints are summerized as the same query.</p> |
483 | 483 | |
484 | 484 | <h2 id="requirement">Requirements</h2> |
485 | -pg_hint_plan 1.2 requires PostgreSQL 9.6. | |
485 | +pg_hint_plan 1.3 requires PostgreSQL 10. | |
486 | 486 | <dl> |
487 | 487 | <dt>PostgreSQL versions tested</dt> |
488 | - <dd>Version 9.6</dd> | |
488 | + <dd>Version 10</dd> | |
489 | 489 | <dt>OS versions tested</dt> |
490 | - <dd>RHEL 7.2</dd> | |
490 | + <dd>CentOS 7.4</dd> | |
491 | 491 | </dl> |
492 | 492 | |
493 | 493 | <h2 id="seealso">See also</h2> |
@@ -1,6 +0,0 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.1.3--1.2.0.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 upgrading from 1.1.3. |
@@ -1,4 +1,4 @@ | ||
1 | -/* pg_hint_plan/pg_hint_plan--1.2.0.sql */ | |
1 | +/* pg_hint_plan/pg_hint_plan--1.3.0.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.2.0' | |
4 | +default_version = '1.3.0' | |
5 | 5 | relocatable = false |
6 | 6 | schema = hint_plan |