Re: [External] LIMIT not showing all results

Поиск
Список
Период
Сортировка
От Andreas Kretschmer
Тема Re: [External] LIMIT not showing all results
Дата
Msg-id e3f08869-3601-f009-94f7-bfd97b0f4164@a-kretschmer.de
обсуждение исходный текст
Ответ на Re: [External] LIMIT not showing all results  (Vijaykumar Jain <vjain@opentable.com>)
Ответы Re: [External] LIMIT not showing all results  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: LIMIT not showing all results  (Casey Deccio <casey@deccio.net>)
Список pgsql-general

Am 05.03.19 um 17:51 schrieb Vijaykumar Jain:
> Thanks Tom.
>
>
> I mean if the instance is a test instance,
> probably analysis_name_date_key can be dropped and the query can be
> run again so as to check if it still returns the correct rows.
> or create an index in parallel with the same col as
> analysis_name_date_key and check if the optimizer choses the right
> index.
> and then come to conclusion of bad index.
>
> Also is there an option where we can force a particular index to be used ?
>

no, but you can set enable_indexscan to off and maybe also 
enable_bitmapscan to off to force the planner to choose a seq-scan.
I'm sure in this case you will get a correct result.

the other thing is, it would be nice to to know why the index is corrupt.


Regards, Andreas

-- 
2ndQuadrant - The PostgreSQL Support Company.
www.2ndQuadrant.com



В списке pgsql-general по дате отправления:

Предыдущее
От: Vijaykumar Jain
Дата:
Сообщение: Re: [External] LIMIT not showing all results
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [External] LIMIT not showing all results