Re: [HACKERS] Index counters of statistics collector does not work on 7.4devel
"Kenji Sugita" <[EMAIL PROTECTED]> wrote: > =# explain select * from class1 where id = 1234; > QUERY PLAN > -- > Index Scan using class1_id_index on class1 (cost=0.00..3.01 rows=2 width=4) >Inde
[HACKERS] Index counters of statistics collector does not work on 7.4devel
Fields idx_scan and idx_tup_fetch are not changed by an index scan. =# create table class1 (id integer); CREATE TABLE =# -- Insert 0.. into class1 =# create index class1_id_index on class1 (id); CREATE INDEX =# vacuum analyze; VACUUM =# \x Expanded disp