From: | Amit Kapila <amit(dot)kapila16(at)gmail(dot)com> |
---|---|
To: | shveta malik <shveta(dot)malik(at)gmail(dot)com> |
Cc: | "Yu Shi (Fujitsu)" <shiy(dot)fnst(at)fujitsu(dot)com>, vignesh C <vignesh21(at)gmail(dot)com>, "Zhijie Hou (Fujitsu)" <houzj(dot)fnst(at)fujitsu(dot)com>, Ajin Cherian <itsajin(at)gmail(dot)com>, "Wei Wang (Fujitsu)" <wangw(dot)fnst(at)fujitsu(dot)com>, Runqi Tian <runqidev(at)gmail(dot)com>, Peter Smith <smithpb2250(at)gmail(dot)com>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, li jie <ggysxcq(at)gmail(dot)com>, Dilip Kumar <dilipbalaut(at)gmail(dot)com>, Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>, 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>, Zheng Li <zhengli10(at)gmail(dot)com> |
Subject: | Re: Support logical replication of DDLs |
Date: | 2023-06-08 05:05:54 |
Message-ID: | CAA4eK1LF3EaCSj5iqO0oT1k3ew7YnQbbKEgbzORDAdvdtd+r7w@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general pgsql-hackers |
On Tue, Jun 6, 2023 at 4:26 PM Amit Kapila <amit(dot)kapila16(at)gmail(dot)com> wrote:
>
>
> Few assorted comments:
> ===================
>
Few comments on 0008* patch:
==============================
1. After 0008*, deparse_CreateStmt(), forms dpcontext before forming
identity whereas it is required only after it. It may not matter
practically but it is better to do the work when it is required. Also,
before 0008, it appears to be formed after identity, so not sure if
the change in 0008 is intentional, if so, then please let me know the
reason, and may be it is better to add a comment for the same.
2. Similarly, what is need to separately do insert_identity_object()
in deparse_CreateStmt() instead of directly doing something like
new_objtree_for_qualname() as we are doing in 0001 patch? For this, I
guess you need objtype handling in new_jsonb_VA().
3.
/*
* It will be of array type for multi-columns table, so lets begin
* an arrayobject. deparse_TableElems_ToJsonb() will add elements
* to it.
*/
pushJsonbValue(&state, WJB_BEGIN_ARRAY, NULL);
deparse_TableElems_ToJsonb(state, relation, node->tableElts, dpcontext,
false, /* not typed table */
false); /* not composite */
deparse_Constraints_ToJsonb(state, objectId);
pushJsonbValue(&state, WJB_END_ARRAY, NULL);
This part of the code is repeated in deparse_CreateStmt(). Can we move
this to a separate function?
4.
* Note we ignore constraints in the parse node here; they are extracted from
* system catalogs instead.
*/
static void
deparse_TableElems_ToJsonb(JsonbParseState *state, Relation relation,
An extra empty line between the comments end and function appears unnecessary.
5.
+ /* creat name and type elements for column */
/creat/create
--
With Regards,
Amit Kapila.
From | Date | Subject | |
---|---|---|---|
Next Message | shveta malik | 2023-06-08 12:01:49 | Re: Support logical replication of DDLs |
Previous Message | richard coleman | 2023-06-07 22:15:16 | Re: No prompt for setting up a master password |
From | Date | Subject | |
---|---|---|---|
Next Message | Drouvot, Bertrand | 2023-06-08 05:12:17 | Re: is pg_log_standby_snapshot() really needed? |
Previous Message | Hayato Kuroda (Fujitsu) | 2023-06-08 03:54:46 | RE: [PoC] pg_upgrade: allow to upgrade publisher node |