一、postgresql 分表子表没有添加索引查询非常慢
子表添加了索引非常快
查看表的索引
select * from pg_indexes where tablename='qrcode_production';
删除索引
DROP INDEX index_pro_uid;
添加索引
CREATE INDEX index_pro_uid ON qrcode_production (uid);