Обсуждение: planner switch from index scan to seq scan?

Поиск
Список
Период
Сортировка

planner switch from index scan to seq scan?

От
Bob Parkinson
Дата:
Is there are simple rule for when the planner switches over from doing an
index scan to a seq scan?

Cheers,

Bob

Bob Parkinson
rwp@biome.ac.uk
------------------------------------------------------------------
Technical Manager:         Biome             http://biome.ac.uk/

Greenfield Medical Library,
Queens Medical Centre,
Nottingham.                          0115 9249924 x 42059
------------------------------------------------------------------
                        We are stardust



Re: planner switch from index scan to seq scan?

От
Tom Lane
Дата:
Bob Parkinson <rwp@biome.ac.uk> writes:
> Is there are simple rule for when the planner switches over from doing an
> index scan to a seq scan?

Sure: when it thinks the seqscan is cheaper ;-)

The cost models on which this is based are not so simple, but you
can study them if you like, see src/backend/optimizer/path/costsize.c

            regards, tom lane