From: | Zheng Li <zhengli10(at)gmail(dot)com> |
---|---|
To: | li jie <ggysxcq(at)gmail(dot)com> |
Cc: | Ajin Cherian <itsajin(at)gmail(dot)com>, Peter Smith <smithpb2250(at)gmail(dot)com>, vignesh C <vignesh21(at)gmail(dot)com>, Dilip Kumar <dilipbalaut(at)gmail(dot)com>, Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>, "houzj(dot)fnst(at)fujitsu(dot)com" <houzj(dot)fnst(at)fujitsu(dot)com>, Amit Kapila <amit(dot)kapila16(at)gmail(dot)com>, Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com>, Japin Li <japinli(at)hotmail(dot)com>, rajesh singarapu <rajesh(dot)rs0541(at)gmail(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org> |
Subject: | Re: Support logical replication of DDLs |
Date: | 2022-12-13 22:25:48 |
Message-ID: | CAAD30ULvGr2McLEe=aguK3z+BvtJ8PY5GLVbAHDcorAaAUFmBQ@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general pgsql-hackers |
Attaching V50 patch set which adds support for SECURITY LABEL commands.
Also fixed an issue in deparse_AlterRelation from the last conflict resolution.
On Mon, Dec 12, 2022 at 9:37 PM li jie <ggysxcq(at)gmail(dot)com> wrote:
>
> I noticed that the issue of ownership seems to have not been considered.
> For example, if a user 'a' from the publishing side creates a table t1,
> the owner of t1 is not user 'a' after it is replicated to the subscribing side.
> This is a situation that has not been encountered in previous DML replication.
>
> I think the ownership relationship should not be lost,
> and we should perhaps add it back,
> like pg_dump "ALTER TABLE public.t1 OWNER TO a;",
> even though we do not currently support the replication of USER.
I agree that this is a useful scenario. On the other hand, I think it
also makes sense to keep the ownership of objects to the subscription
owner in other use cases. Maybe we can make it optional whether to
inherit the original ownership of the publisher on the subscriber
using a new subscription_parameter. For example, original_ownership:
CREATE SUBSCRIPTION mysub CONNECTION 'conninfo' PUBLICATION mypub WITH
(original_ownership=true);
Then we can change the apply worker to set the ownership of new
objects accordingly. We also need to make the owner information
available in the logicalddlmsg, currently we don't log this
information.
Regards,
Zheng
Attachment | Content-Type | Size |
---|---|---|
v50-0004-Test-cases-for-DDL-replication.patch | application/octet-stream | 24.6 KB |
v50-0002-Support-DDL-replication.patch | application/octet-stream | 132.5 KB |
v50-0005-Skip-ALTER-TABLE-subcommands-generated-for-TableLike.patch | application/octet-stream | 2.2 KB |
v50-0003-Support-CREATE-TABLE-AS-SELECT-INTO.patch | application/octet-stream | 15.7 KB |
v50-0001-Functions-to-deparse-DDL-commands.patch | application/octet-stream | 326.6 KB |
v50-0006-Support-DDL-replication-of-alter-type-having-USING-e.patch | application/octet-stream | 9.0 KB |
v50-0007-Introduce-the-test_ddl_deparse_regress-test-module.-.patch | application/octet-stream | 46.7 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Adrian Klaver | 2022-12-14 01:21:52 | Re: print in plpython not appearing in logs |
Previous Message | Shaozhong SHI | 2022-12-13 21:20:04 | Re: print in plpython not appearing in logs |
From | Date | Subject | |
---|---|---|---|
Next Message | Peter Geoghegan | 2022-12-13 23:07:10 | Re: New strategies for freezing, advancing relfrozenxid early |
Previous Message | Michael Paquier | 2022-12-13 22:13:24 | Re: Remove SHA256_HMAC_B from scram-common.h |