\timing on
drop table if exists test_table;
create extension if not exists pgcrypto;
create table test_table(k text, v text, PRIMARY KEY(k ASC));
create index index_v_test_table on test_table(v);
-- Load 10M rows
do $$
begin
for counter in 1..100 loop
raise notice 'counter: %', (counter * 10000);
insert into test_table (select gen_random_uuid(), gen_random_bytes(50)::text
from generate_series(1, 10000) i);
commit;
end loop;
end $$;
Jira Link: DB-9397
Description
In the context of discussing a perf regression related to Bloom filters not being checked, @ttyusupov mentioned:
Related issue: #20398
Test case from @ttyusupov and @kmuthukk:
and then
Issue Type
kind/bug
Warning: Please confirm that this issue does not contain any sensitive information