Re: Add missing CREATE TABLE IF NOT EXISTS table_name AS EXECUTEquery; - Mailing list pgsql-hackers

From Michael Paquier
Subject Re: Add missing CREATE TABLE IF NOT EXISTS table_name AS EXECUTEquery;
Date
Msg-id 20190207013135.GD4074@paquier.xyz
Whole thread Raw
In response to Re: Add missing CREATE TABLE IF NOT EXISTS table_name AS EXECUTEquery;  (Andreas Karlsson <andreas@proxel.se>)
Responses Re: Add missing CREATE TABLE IF NOT EXISTS table_name AS EXECUTEquery;
List pgsql-hackers
On Wed, Feb 06, 2019 at 04:23:44PM +0100, Andreas Karlsson wrote:
> I added a test in create_table.sql where the test for the other form of CTAS
> IF NOT EXISTS is.

Okay, we can live with that.  Instead of a scan on pg_class, I would
have switched to a more simple thing like that for the PREPARE query:
PREPARE select1 AS SELECT 1 AS a;

Then it would be good to add a scan on the created relation after
running all the CREATE TABLE queries to make sure that it remains with
only one tuple.

> I have no idea if something like this should be back patched. I will add it
> to the commit fest either way so it is not lost.

I'd like to get that addressed before working on the other item
reshuffling the CTAS relation creation.  Let's wait for a couple of
days and see if folks have objections, and then revisit it at the
beginning of next week.  CTAS IF NOT EXISTS is supported down to
9.5 and is documented as such, and my proposal is to back-patch
accordingly.
--
Michael

Attachment

pgsql-hackers by date:

Previous
From: Michael Paquier
Date:
Subject: Re: Tighten up a few overly lax regexes in pg_dump's tap tests
Next
From: Andrew Dunstan
Date:
Subject: Location of pg_rewind/RewindTest.pm and ssl/ServerSetup.pm