Re: Delay INSERT - Mailing list pgsql-general

From Dawid Kuroczko
Subject Re: Delay INSERT
Date
Msg-id 758d5e7f05032308342828a03f@mail.gmail.com
Whole thread Raw
In response to Re: Delay INSERT  (Richard Huxton <dev@archonet.com>)
Responses Re: Delay INSERT  (Richard Huxton <dev@archonet.com>)
Re: Delay INSERT  (Greg Stark <gsstark@mit.edu>)
Re: Delay INSERT  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
On Wed, 23 Mar 2005 14:50:47 +0000, Richard Huxton <dev@archonet.com> wrote:
> ON.KG wrote:
> > Hi
> >
> > Does PostgreSQL have something like "INSERT DELAYD" - like it is used in
> > MySQL?
> >
> > or any other way to delay inserting?
>
> What precisely does this do?

It adds an insert into a 'do this' queue and returns.  From PostgreSQL-s
point of view it would be equivalent of issuing INSERT and not waiting
for the result.

The MySQL has this mainly because when other statement such as
SELECT or UPDATE is in progress, the INSERT would be blocked.

PostgreSQL doesn't have such issues with blocking, so only difference
between INSERT and INSERT DELAYED from PostgreSQL's standpoint
would be waiting and not for the result...

pgsql-general by date:

Previous
From: "Magnus Hagander"
Date:
Subject: Re: Simple query takes a long time on win2K
Next
From: "A. Mous"
Date:
Subject: Re: Simple query takes a long time on win2K