redundants indexes can be created

Поиск
Список
Период
Сортировка
От Cyril SCETBON
Тема redundants indexes can be created
Дата
Msg-id 486DF35D.70603@echo.fr
обсуждение исходный текст
Ответы Re: redundants indexes can be created  (hubert depesz lubaczewski <depesz@depesz.com>)
Re: redundants indexes can be created  (Richard Huxton <dev@archonet.com>)
Список pgsql-general
Hi guys,

Why postgres does not disallow creating redundants indexes ? Is it the
same behaviour in postgresql 8.3 ?

postgres=# \d t1
             Table "public.t1"
Column |         Type          | Modifiers
--------+-----------------------+-----------
id     | integer               | not null
name   | character varying(20) |
Indexes:
    "t1_pkey" PRIMARY KEY, btree (id)
    "idx" btree (id)
    "idx2" btree (id)
    "idx3" btree (id)
    "idx4" btree (id)
    "idx5" btree (id)


Regards
--
Cyril SCETBON


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

Предыдущее
От: "Asko Oja"
Дата:
Сообщение: Re: php + postgresql website ?
Следующее
От: hubert depesz lubaczewski
Дата:
Сообщение: Re: redundants indexes can be created