access_clog_prep.sql

application/octet-stream

Filename: access_clog_prep.sql
Type: application/octet-stream
Part: 0
Message: Re: Speed up Clog Access by increasing CLOG buffers
drop table if exists test_clog_access;
create unlogged table test_clog_access(c1 serial);
create index idx_clog_access on test_clog_access(c1);
insert into test_clog_access values(generate_series(1,32768));