From: | Greg Nancarrow <gregn4422(at)gmail(dot)com> |
---|---|
To: | vignesh C <vignesh21(at)gmail(dot)com> |
Cc: | Amit Kapila <amit(dot)kapila16(at)gmail(dot)com>, "houzj(dot)fnst(at)fujitsu(dot)com" <houzj(dot)fnst(at)fujitsu(dot)com>, Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com>, Peter Eisentraut <peter(dot)eisentraut(at)enterprisedb(dot)com>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Peter Smith <smithpb2250(at)gmail(dot)com>, "tanghy(dot)fnst(at)fujitsu(dot)com" <tanghy(dot)fnst(at)fujitsu(dot)com>, Ajin Cherian <itsajin(at)gmail(dot)com>, Rahila Syed <rahilasyed90(at)gmail(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>, Bharath Rupireddy <bharath(dot)rupireddyforpostgres(at)gmail(dot)com> |
Subject: | Re: Added schema level support for publication. |
Date: | 2021-09-21 03:33:43 |
Message-ID: | CAJcOf-eV+XQ9sz_CvpYJSiWG9LSCPAYijFxUX6e0wBWm0ErDRg@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Fri, Sep 17, 2021 at 10:09 PM vignesh C <vignesh21(at)gmail(dot)com> wrote:
>
> Attached v29 patch has the fixes for the same.
>
Some minor comments on the v29-0002 patch:
(1)
In get_object_address_publication_schema(), the error message:
+ errmsg("publication tables of schema \"%s\" in publication \"%s\"
does not exist",
isn't grammatically correct. It should probably be:
+ errmsg("publication tables of schema \"%s\" in publication \"%s\" do
not exist",
(2)
getPublicationSchemaInfo() function header.
"string" should be "strings"
BEFORE:
+ * nspname. Both pubname and nspname are palloc'd string which will be freed by
AFTER:
+ * nspname. Both pubname and nspname are palloc'd strings which will
be freed by
(3)
getPublicationSchemaInfo()
In the case of "if (!(*nspname))", the following line should probably
be added before returning false:
*pubname = NULL;
(4)
GetAllSchemasPublicationRelations() function header
Shouldn't:
+ * Gets the list of all relations published by FOR ALL TABLES IN SCHEMA
+ * publication(s).
actually say:
+ * Gets the list of all relations published by a FOR ALL TABLES IN SCHEMA
+ * publication.
since it is for a specified publication?
(5)
I'm wondering, in CheckObjSchemaNotAlreadyInPublication(), instead of
checking "checkobjtype" each loop iteration, wouldn't it be better to
just use the same for-loop in each IF block?
Regards,
Greg Nancarrow
Fujitsu Australia
From | Date | Subject | |
---|---|---|---|
Next Message | Justin Pryzby | 2021-09-21 04:09:08 | Re: PostgreSQL 14 press release draft |
Previous Message | Ajin Cherian | 2021-09-21 03:27:49 | Re: row filtering for logical replication |