Skip to content

Commit 6fc57ec

Browse files
committed
Version 1.4.4
The release is not ready yet, but this does all the ground work to be able to do a release at any moment.
1 parent 633d12a commit 6fc57ec

9 files changed

+58
-10
lines changed

META.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pg_hint_plan14",
33
"abstract": "Query hints in SQL comments",
44
"description": "This library adds support for query hints in SQL comments in PostgreSQL 14.",
5-
"version": "1.4.3",
5+
"version": "1.4.4",
66
"maintainer": [
77
"Michael Paquier <[email protected]>"
88
],
@@ -19,7 +19,7 @@
1919
"abstract": "Query hints in SQL comments",
2020
"file": "pg_hint_plan--1.3.0.sql",
2121
"docfile": "README.md",
22-
"version": "1.4.3"
22+
"version": "1.4.4"
2323
}
2424
},
2525
"resources": {

Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66

77
MODULES = pg_hint_plan
8-
HINTPLANVER = 1.4.3
8+
HINTPLANVER = 1.4.4
99

1010
REGRESS = init base_plan pg_hint_plan ut-init ut-A ut-S ut-J ut-L ut-G ut-R \
1111
ut-fdw ut-W ut-T ut-fini hints_anywhere plpgsql hint_table oldextversions
@@ -24,10 +24,12 @@ DATA = \
2424
pg_hint_plan--1.3.7--1.3.8.sql \
2525
pg_hint_plan--1.3.8--1.3.9.sql \
2626
pg_hint_plan--1.3.9--1.3.10.sql \
27-
pg_hint_plan--1.3.10--1.4.sql \
27+
pg_hint_plan--1.3.10--1.3.11.sql \
28+
pg_hint_plan--1.3.11--1.4.sql \
2829
pg_hint_plan--1.4--1.4.1.sql \
2930
pg_hint_plan--1.4.1--1.4.2.sql \
30-
pg_hint_plan--1.4.2--1.4.3.sql
31+
pg_hint_plan--1.4.2--1.4.3.sql \
32+
pg_hint_plan--1.4.3--1.4.4.sql
3133

3234
EXTRA_CLEAN = sql/ut-fdw.sql expected/ut-fdw.out RPMS
3335

SPECS/pg_hint_plan14.spec

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
## Set general information for pg_store_plans.
1717
Summary: Optimizer hint on PostgreSQL 12
1818
Name: pg_hint_plan14
19-
Version: 1.4.3
19+
Version: 1.4.4
2020
Release: 1%{?dist}
2121
License: BSD
2222
Group: Applications/Databases
@@ -39,7 +39,7 @@ Note that this package is available for only PostgreSQL 14.
3939

4040
%package llvmjit
4141
Requires: postgresql14-server, postgresql14-llvmjit
42-
Requires: pg_hint_plan14 = 1.4.3
42+
Requires: pg_hint_plan14 = 1.4.4
4343
Summary: Just-in-time compilation support for pg_hint_plan14
4444

4545
%description llvmjit
@@ -84,10 +84,12 @@ rm -rf %{buildroot}
8484
%{_datadir}/extension/pg_hint_plan--1.3.7--1.3.8.sql
8585
%{_datadir}/extension/pg_hint_plan--1.3.8--1.3.9.sql
8686
%{_datadir}/extension/pg_hint_plan--1.3.9--1.3.10.sql
87-
%{_datadir}/extension/pg_hint_plan--1.3.10--1.4.sql
87+
%{_datadir}/extension/pg_hint_plan--1.3.10--1.3.11.sql
88+
%{_datadir}/extension/pg_hint_plan--1.3.11--1.4.sql
8889
%{_datadir}/extension/pg_hint_plan--1.4--1.4.1.sql
8990
%{_datadir}/extension/pg_hint_plan--1.4.1--1.4.2.sql
9091
%{_datadir}/extension/pg_hint_plan--1.4.2--1.4.3.sql
92+
%{_datadir}/extension/pg_hint_plan--1.4.3--1.4.4.sql
9193
%{_datadir}/extension/pg_hint_plan.control
9294

9395
%files llvmjit
@@ -99,6 +101,8 @@ rm -rf %{buildroot}
99101

100102
# History of pg_hint_plan.
101103
%changelog
104+
* Mon Jun 30 2025 Michael Paquier
105+
- Version 1.4.4.
102106
* Thu Aug 29 2024 Michael Paquier
103107
- Version 1.4.3.
104108
* Tue Aug 29 2023 Michael Paquier

expected/oldextversions.out

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,15 @@ Objects in extension "pg_hint_plan"
100100
table hint_plan.hints
101101
(2 rows)
102102

103+
ALTER EXTENSION pg_hint_plan UPDATE TO "1.3.11";
104+
\dx+ pg_hint_plan
105+
Objects in extension "pg_hint_plan"
106+
Object description
107+
---------------------------------
108+
sequence hint_plan.hints_id_seq
109+
table hint_plan.hints
110+
(2 rows)
111+
103112
ALTER EXTENSION pg_hint_plan UPDATE TO "1.4";
104113
\dx+ pg_hint_plan
105114
Objects in extension "pg_hint_plan"
@@ -136,4 +145,13 @@ Objects in extension "pg_hint_plan"
136145
table hint_plan.hints
137146
(2 rows)
138147

148+
ALTER EXTENSION pg_hint_plan UPDATE TO "1.4.4";
149+
\dx+ pg_hint_plan
150+
Objects in extension "pg_hint_plan"
151+
Object description
152+
---------------------------------
153+
sequence hint_plan.hints_id_seq
154+
table hint_plan.hints
155+
(2 rows)
156+
139157
DROP EXTENSION pg_hint_plan;

pg_hint_plan--1.3.10--1.3.11.sql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* pg_hint_plan/pg_hint_plan--1.3.10--1.3.11.sql */
2+
3+
-- complain if script is sourced in psql, rather than via ALTER EXTENSION
4+
\echo Use "ALTER EXTENSION pg_hint_plan UPDATE TO '1.3.11'" 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','');
8+
9+
GRANT SELECT ON hint_plan.hints TO PUBLIC;
10+
GRANT USAGE ON SCHEMA hint_plan TO PUBLIC;

pg_hint_plan--1.3.10--1.4.sql renamed to pg_hint_plan--1.3.11--1.4.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* pg_hint_plan/pg_hint_plan--1.3.10--1.4.sql */
1+
/* pg_hint_plan/pg_hint_plan--1.3.11--1.4.sql */
22

33
-- complain if script is sourced in psql, rather than via ALTER EXTENSION
44
\echo Use "ALTER EXTENSION pg_hint_plan UPDATE TO '1.4'" to load this file. \quit

pg_hint_plan--1.4.3--1.4.4.sql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* pg_hint_plan/pg_hint_plan--1.4.3--1.4.4.sql */
2+
3+
-- complain if script is sourced in psql, rather than via ALTER EXTENSION
4+
\echo Use "ALTER EXTENSION pg_hint_plan UPDATE TO '1.4.4'" 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','');
8+
9+
GRANT SELECT ON hint_plan.hints TO PUBLIC;
10+
GRANT USAGE ON SCHEMA hint_plan TO PUBLIC;

pg_hint_plan.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pg_hint_plan extension
22

33
comment = ''
4-
default_version = '1.4.3'
4+
default_version = '1.4.4'
55
relocatable = false
66
schema = hint_plan

sql/oldextversions.sql

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ ALTER EXTENSION pg_hint_plan UPDATE TO "1.3.9";
2424
\dx+ pg_hint_plan
2525
ALTER EXTENSION pg_hint_plan UPDATE TO "1.3.10";
2626
\dx+ pg_hint_plan
27+
ALTER EXTENSION pg_hint_plan UPDATE TO "1.3.11";
28+
\dx+ pg_hint_plan
2729
ALTER EXTENSION pg_hint_plan UPDATE TO "1.4";
2830
\dx+ pg_hint_plan
2931
ALTER EXTENSION pg_hint_plan UPDATE TO "1.4.1";
@@ -32,4 +34,6 @@ ALTER EXTENSION pg_hint_plan UPDATE TO "1.4.2";
3234
\dx+ pg_hint_plan
3335
ALTER EXTENSION pg_hint_plan UPDATE TO "1.4.3";
3436
\dx+ pg_hint_plan
37+
ALTER EXTENSION pg_hint_plan UPDATE TO "1.4.4";
38+
\dx+ pg_hint_plan
3539
DROP EXTENSION pg_hint_plan;

0 commit comments

Comments
 (0)