• R/O
  • HTTP
  • SSH
  • HTTPS

pg_hint_plan: Commit

firtst release


Commit MetaInfo

Revision246803b901b3cd419091c14d9bb2080063841c91 (tree)
Time2020-07-14 15:27:39
Authoregashira.yusuke <egashira.yusuke@fuji...>
CommiterKyotaro Horiguchi

Log Message

Mark hint table as a configuration table.

The table hint_plan.hints is a configuration table of
pg_hint_plan. Mark it as such, as well as its sequence table.

Back patch to pg_hint_plan96.

Change Summary

Incremental Difference

--- a/pg_hint_plan--1.3.5.sql
+++ b/pg_hint_plan--1.3.5.sql
@@ -15,5 +15,8 @@ CREATE UNIQUE INDEX hints_norm_and_app ON hint_plan.hints (
1515 application_name
1616 );
1717
18+SELECT pg_catalog.pg_extension_config_dump('hint_plan.hints','');
19+SELECT pg_catalog.pg_extension_config_dump('hint_plan.hints_id_seq','');
20+
1821 GRANT SELECT ON hint_plan.hints TO PUBLIC;
1922 GRANT USAGE ON SCHEMA hint_plan TO PUBLIC;
Show on old repository browser