标签: postgresql
假设我在两列上都有一个索引
create index test1 on pointless (x,y);
后来我决定创建一个局部索引
create index test2 on pointless (x) where y > 0;
Postgres是在创建索引test1时使用索引test2还是重新扫描原始表?
test1
test2
我只是想知道当我坐在这里等待在大表上创建某些索引时,我想也许我应该先创建最大的索引。