Create clustered index

Поиск
Список
Период
Сортировка
От Bartosz Dmytrak
Тема Create clustered index
Дата
Msg-id CAD8_UcZCWNYmA15UEmvnq-6+6a+r1BV2FPDC6U64H2V6f6EZEw@mail.gmail.com
обсуждение исходный текст
Ответы Re: Create clustered index
Список pgadmin-support
Hi,
I've tried to create clustered index on table, pgAdmin generated SQL:
CREATE INDEX 
   ON "Calc"."tblDBObjectsDefs" (fullname ASC NULLS LAST);
ALTER TABLE "Calc"."tblDBObjectsDefs" CLUSTER ON ;

Problem is that I tried to create unnamed index, to allow DB to name it. Because of that, ALTER TABLE statement is not valid (no index name after CLUSTER ON).

My suggestion is to disallow create clustered indexes when there is no explicit name given by the user.

Regards,
Bartek

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

Предыдущее
От: Mephysto
Дата:
Сообщение: Re: Column prosrc of table pg_proc
Следующее
От: Guillaume Lelarge
Дата:
Сообщение: Re: Create clustered index