Re: Case insensitive selects?

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: Case insensitive selects?
Дата
Msg-id 200102161941.OAA27237@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: Case insensitive selects?  (David Wheeler <david@creationengines.com>)
Ответы Re: Case insensitive selects?
Список pgsql-general
> On Thu, 15 Feb 2001, Michael Fork wrote:
>
> > Indexes *can* and *will* be used if you create the appropiate
> > functional indexes, i.e:
> >
> > CREATE INDEX idx_table_field_upper ON table(upper(field));
> >
> > SELECT field FROM table WHERE upper(field) LIKE upper('some string');
>
> Hmmm...I'd hate to have two indexes on every field I query like this, one
> case-senstive, one case-insensitve (like the one you create here). Is
> there a configuration option or something that will tell pgsql to do
> case-insensitive comparisons (kinda like MS SQL Server has)? That could
> save us on indexing overhead, since we want all of our WHERE comparisons
> to be case-insensitive, anyway.

I was wondering if we could do case-insensitive index waking by doing
looking for CAR as:

    CAR
    CAr
    CaR
    Car
    cAR
    cAr
    caR
    car

Basically you look for CAR, then back up in the btree, to CA and look
for r instead of R.  I relized the number of tests would exponentially
explode, but isn't it just like btree walking where we back up to test
the lowercase of the letter.

--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026

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

Предыдущее
От: Angelo DiSanto
Дата:
Сообщение: Question
Следующее
От: Tom Lane
Дата:
Сообщение: Re: order of clauses