-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The release is not ready yet, but this does all the ground work to be able to do a release at any moment.
- Loading branch information
Showing
10 changed files
with
57 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "pg_hint_plan15", | ||
"abstract": "Query hints in SQL comments", | ||
"description": "This library adds support for query hints in SQL comments in PostgreSQL 15.", | ||
"version": "1.5.1", | ||
"version": "1.5.2", | ||
"maintainer": [ | ||
"Michael Paquier <[email protected]>" | ||
], | ||
|
@@ -19,7 +19,7 @@ | |
"abstract": "Query hints in SQL comments", | ||
"file": "pg_hint_plan--1.3.0.sql", | ||
"docfile": "README.md", | ||
"version": "1.5.1" | ||
"version": "1.5.2" | ||
} | ||
}, | ||
"resources": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* pg_hint_plan/pg_hint_plan--1.3.9--1.3.10.sql */ | ||
|
||
-- complain if script is sourced in psql, rather than via ALTER EXTENSION | ||
\echo Use "ALTER EXTENSION pg_hint_plan UPDATE TO '1.3.10'" to load this file. \quit | ||
|
||
SELECT pg_catalog.pg_extension_config_dump('hint_plan.hints',''); | ||
SELECT pg_catalog.pg_extension_config_dump('hint_plan.hints_id_seq',''); | ||
|
||
GRANT SELECT ON hint_plan.hints TO PUBLIC; | ||
GRANT USAGE ON SCHEMA hint_plan TO PUBLIC; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* pg_hint_plan/pg_hint_plan--1.4.2--1.4.3.sql */ | ||
|
||
-- complain if script is sourced in psql, rather than via ALTER EXTENSION | ||
\echo Use "ALTER EXTENSION pg_hint_plan UPDATE TO '1.4.3'" to load this file. \quit | ||
|
||
SELECT pg_catalog.pg_extension_config_dump('hint_plan.hints',''); | ||
SELECT pg_catalog.pg_extension_config_dump('hint_plan.hints_id_seq',''); | ||
|
||
GRANT SELECT ON hint_plan.hints TO PUBLIC; | ||
GRANT USAGE ON SCHEMA hint_plan TO PUBLIC; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/* pg_hint_plan/pg_hint_plan--1.5.1--1.5.2.sql */ | ||
|
||
-- complain if script is sourced in psql, rather than via CREATE EXTENSION | ||
\echo Use "ALTER EXTENSION pg_hint_plan UPDATE TO '1.5.2'" to load this file. \quit | ||
|
||
SELECT pg_catalog.pg_extension_config_dump('hint_plan.hints',''); | ||
SELECT pg_catalog.pg_extension_config_dump('hint_plan.hints_id_seq',''); | ||
|
||
GRANT SELECT ON hint_plan.hints TO PUBLIC; | ||
GRANT USAGE ON SCHEMA hint_plan TO PUBLIC; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# pg_hint_plan extension | ||
|
||
comment = '' | ||
default_version = '1.5.1' | ||
default_version = '1.5.2' | ||
relocatable = false | ||
schema = hint_plan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters