how to prepare a create table statement - Mailing list pgsql-bugs

From Alexander Mills
Subject how to prepare a create table statement
Date
Msg-id CA+KyZp6SeL-ULK=jjquNcz23hb0nZXYa8wDW1sJJJ=xDiHicxw@mail.gmail.com
Whole thread Raw
Responses Re: how to prepare a create table statement  (Pavel Stehule <pavel.stehule@gmail.com>)
Re: how to prepare a create table statement  (Michael Paquier <michael@paquier.xyz>)
List pgsql-bugs
I am trying to create 500 partitions using a loop:

do $$
declare
counter integer := 0;
begin
while counter <= 500 loop
PREPARE create_table(int) AS
CREATE TABLE mbk_auth_method_$1 PARTITION OF mbk_auth_method FOR VALUES WITH (modulus 500, remainder $1);
EXECUTE create_table (counter);
counter := counter + 1;
end loop;
end$$;

problem is that a CREATE TABLE cannot be prepared statement..
Anyone know how I can accomplish the above? Seems like this is a missing feature - to prepare a CREATE TABLE statement..


--
Alexander D. Mills
New cell phone # (415)730-1805
linkedin.com/in/alexanderdmills

pgsql-bugs by date:

Previous
From: Michael Paquier
Date:
Subject: Re: BUG #16801: Invalid memory access on WITH RECURSIVE with nested WITHs
Next
From: Pavel Stehule
Date:
Subject: Re: how to prepare a create table statement