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연산자 와 함께 색인이 사용되지 …