Re: Better name/syntax for "online" index creation - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: Better name/syntax for "online" index creation
Date
Msg-id 200607250208.k6P28wk03147@momjian.us
Whole thread Raw
In response to Re: Better name/syntax for "online" index creation  (Bruce Momjian <bruce@momjian.us>)
Responses Re: Better name/syntax for "online" index creation  (Alvaro Herrera <alvherre@commandprompt.com>)
List pgsql-hackers
Bruce Momjian wrote:
> Rod Taylor wrote:
> > Sorry, hit send too quickly.
> > 
> > NOLOCK is kinda like NOWAIT, except implies that the command will not
> > take a strong lock instead of stating that it will not wait for one.
> > 
> > On Mon, 2006-07-24 at 11:20 -0400, Rod Taylor wrote:
> > > >     SHARED CREATE INDEX ....
> 
> I like NOLOCK myself.  ONLINE makes it sound like non-ONLINE index
> creation has to happen when the server is down.
> 
> I don't like SHARED as the first word because we don't do this in any
> other cases --- it makes it look like the command is SHARED, and I am
> sure people will try putting SHARED in front of other commands like
> UPDATE.  "Hey, where is the SHARED manual page?"
> 
> Anyway, if you want psql to easily identify it, just return NOLOCK as
> part of the command string returned:
> 
>     test=> create index i on test(x);
>     CREATE INDEX NOLOCK

Oh, psql needs to know before the command is sent?  How do we handle it
now with CLUSTER?  Whatever psql is trying to prevent doesn't seem to
warrant mucking up the logical order of the CREATE INDEX command.

--  Bruce Momjian   bruce@momjian.us EnterpriseDB    http://www.enterprisedb.com
 + If your life is a hard drive, Christ can be your backup. +


pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: Better name/syntax for "online" index creation
Next
From: Bruce Momjian
Date:
Subject: Re: Making config file parser available to add-ins