1
索引不与`= any()`一起使用,但与`in`一起使用
表t有两个索引: create table t (a int, b int); create type int_pair as (a int, b int); create index t_row_idx on t (((a,b)::int_pair)); create index t_a_b_idx on t (a,b); insert into t (a,b) select i, i from generate_series(1, 100000) g(i) ; 没有索引与any运算符一起使用: explain analyze select * from t where (a,b) = …