Dado:
postgres=# create table testing(a int primary key, b int not null);
CREATE TABLE
postgres=# create index on testing (b) where b = 0;
CREATE INDEX
postgres=# \d testing
Table "public.testing"
Column | Type | Collation | Nullable | Default
--------+---------+-----------+----------+---------
a | integer | | not null |
b | integer | | not null |
Indexes:
"testing_pkey" PRIMARY KEY, btree (a)
"testing_b_idx" btree (b) WHERE b = 0
Ao INSERT
inserir uma nova linha onde b
!= 0
, pagarei a penalidade de atualizar o índice?
Idealmente, gostaria de acelerar as consultas com um valor b
= 1
sem adicionar atraso na inserção de novas linhas onde b
!= 0
.