pg_hint_plan简单使用

create extension pg_hint_plan;
alter role all set session_preload_libraries='pg_hint_plan';
pg_hint_plan简单使用
建表插数
pg_hint_plan简单使用
正常情况会走索引
pg_hint_plan简单使用
强制走全表扫描
pg_hint_plan简单使用
强制走bitmapscan
pg_hint_plan简单使用
这个插件就比pg呢几个enable参数更加灵活,可以针对某个查询来使用,让他走固定的扫描或者join方式。

上一篇:postgresql垃圾回收


下一篇:pageinspect分析btree索引结构