Por que o PostgreSQL executa varredura sequencial na coluna indexada?

Exemplo muito simples - uma tabela, um índice, uma consulta:

CREATE TABLE book
(
  id bigserial NOT NULL,
  "year" integer,
  -- other columns...
);

CREATE INDEX book_year_idx ON book (year)

EXPLAIN
 SELECT *
   FROM book b
  WHERE b.year > 2009

me dá:

Seq Scan on book b  (cost=0.00..25663.80 rows=105425 width=622)
  Filter: (year > 2009)

Por que NÃO realiza a verificação de índice? o que estou perdendo?

questionAnswers(2)

yourAnswerToTheQuestion