Re: [PATCH] add CLUSTER table USING index

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: [PATCH] add CLUSTER table USING index
Дата
Msg-id 20070328205043.GC10878@alvh.no-ip.org
обсуждение исходный текст
Ответ на [PATCH] add CLUSTER table USING index  (Holger Schurig <holgerschurig@gmx.de>)
Ответы Re: [PATCH] add CLUSTER table USING index  (Holger Schurig <holgerschurig@gmx.de>)
Список pgsql-patches
FWIW you don't need to patch the TODO files.  They will be updated by
Bruce.  (And in any case we don't remove the entries, but rather mark
them with a "-" meaning "done for the next release").

Also, sql_help.h is a generated file.  You need to change the appropiate
SGML source (doc/src/sgml/ref/cluster.sgml I think)

>       /*
> !      * If we have CLUSTER <sth> ORDER BY, then add the index as well.
>        */
> !     else if (pg_strcasecmp(prev3_wd, "CLUSTER") == 0 &&
> !              pg_strcasecmp(prev_wd, "USING") == 0 &&
> !     XXXXX         pg_strcasecmp(prev2_wd, "ORDER") == 0)
>       {
> !         completion_info_charp = prev3_wd;
> !         COMPLETE_WITH_QUERY(Query_for_index_of_table);
>       }

Huh?

--
Alvaro Herrera                                http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

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

Предыдущее
От: Holger Schurig
Дата:
Сообщение: [PATCH] add CLUSTER table USING index
Следующее
От: Holger Schurig
Дата:
Сообщение: Re: [PATCH] add CLUSTER table USING index