firtst release
Revision | 46ac55e500402863e0ea725e1fe678aff7e48737 (tree) |
---|---|
Time | 2020-07-14 16:02:45 |
Author | egashira.yusuke <egashira.yusuke@fuji...> |
Commiter | Kyotaro Horiguchi |
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.
@@ -15,5 +15,8 @@ CREATE UNIQUE INDEX hints_norm_and_app ON hint_plan.hints ( | ||
15 | 15 | application_name |
16 | 16 | ); |
17 | 17 | |
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 | + | |
18 | 21 | GRANT SELECT ON hint_plan.hints TO PUBLIC; |
19 | 22 | GRANT USAGE ON SCHEMA hint_plan TO PUBLIC; |