Re: Comparison of Strings

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Comparison of Strings
Дата
Msg-id 8171.975030412@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Comparison of Strings  (Mike Schulte <schulte@cs.umsl.edu>)
Список pgsql-bugs
Mike Schulte <schulte@cs.umsl.edu> writes:
> If I run the following command, I get  [the string matches the first two
> entries in the table]:

> cs302=# select * from author where isbn = '1565921941';
>  isbn | author
> ------+--------
> (0 rows)

Ugh :-(.  This looks like a corrupted-index problem --- is there an
index on the isbn column?  If so, does EXPLAIN show that this query
uses an indexscan?

Dropping and recreating the index would probably make the problem
go away, but that doesn't answer the more interesting question: how'd
you get into this state?  Have you had any crashes or peculiar behavior
with this database?  Do you have LOCALE support compiled in, and if so
have you been careful to start the postmaster with the same locale
setting every time?  (A column of ISBNs doesn't seem like promising
material for a locale problem, but you never know...)

It would be revealing to check whether the index is really in proper
order or not.  Try

set enable_sort to off;
select isdn from author order by isdn;

(make sure EXPLAIN agrees that this query will be done by an indexscan
with no explicit sort step).  See if the output is in proper sort
order or not...

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Bug report
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Function COPY