摘要:
【场景和触发】 初始化一个数据页后(初始化索引页时,表页重构时) drop table if exists t_index;create table t_index (id int,c1 char(8));CREATE INDEX my_pg_index ON t_index USING btree 阅读全文
摘要:
【测试sql】 select * from t1 where id not in (select id from t2); 【执行计划】 根节点是顺序扫描t1 其中:qual,SUBPLAN 【执行逻辑】 【文本】 :commandType 1 :queryId 0 :hasReturning fa 阅读全文