简体   繁体   中英

How can I install pg_hint_plan on amazon RDS Postgres 13

I am trying to install pg_hint_plan in order to manipulate my query plans. on my amazon RDS with postgres 13.

I successfully added the extension with CREATE EXTENSION pg_hint_plan which makes the extension appear in the list of installed exceptions select * from pg_catalog.pg_extension

However when I try to use hints on my queries, nothing happens. For example when i try to force an error as displayed on the documentation:

在此处输入图像描述

I get no error from the pg_hint_plan on my output, and its like the hint is ignored在此处输入图像描述

Is there any mistake on the configuration? From what I understood I dont need to do LOAD 'pg_hint_plan' as specified on the documentation because I am using Amazon RDS

Before this will work you need to alter the database parameters for shared_preload_libraries to contain pg_hint_plan. Then'll you'll need to bounce the cluster. After that it should work.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM