Re: [PATCH] add CLUSTER table USING index - Mailing list pgsql-patches

From Alvaro Herrera
Subject Re: [PATCH] add CLUSTER table USING index
Date
Msg-id 20070328205043.GC10878@alvh.no-ip.org
Whole thread Raw
In response to [PATCH] add CLUSTER table USING index  (Holger Schurig <holgerschurig@gmx.de>)
Responses Re: [PATCH] add CLUSTER table USING index  (Holger Schurig <holgerschurig@gmx.de>)
List 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 by date:

Previous
From: Holger Schurig
Date:
Subject: [PATCH] add CLUSTER table USING index
Next
From: Holger Schurig
Date:
Subject: Re: [PATCH] add CLUSTER table USING index