Re: Issue while creating index dynamically - Mailing list pgsql-general

From Tom Lane
Subject Re: Issue while creating index dynamically
Date
Msg-id 1085896.1721766747@sss.pgh.pa.us
Whole thread Raw
In response to Re: Issue while creating index dynamically  (Ron Johnson <ronljohnsonjr@gmail.com>)
Responses Re: Issue while creating index dynamically
List pgsql-general
Ron Johnson <ronljohnsonjr@gmail.com> writes:
> On Tue, Jul 23, 2024 at 4:10 PM veem v <veema0000@gmail.com> wrote:
>> But we are getting an error while executing saying it cant be executed in
>> transaction block with "CONCURRENTLY". So I want to understand , is there
>> any alternate way to get away with this?

> I'd write that in bash, not in a DO block.

Yeah.  I thought for a bit about using contrib/dblink to carry out
the commands in a different session, but I don't think that'll work:
CREATE INDEX CONCURRENTLY would think it has to wait out the
transaction running the DO block at some steps.  Shove the logic
over to the client side and you're good to go.

            regards, tom lane



pgsql-general by date:

Previous
From: Ron Johnson
Date:
Subject: Re: Issue while creating index dynamically
Next
From: Adrian Klaver
Date:
Subject: Re: re-novice coming back to pgsql: porting an SQLite update statement to postgres