From: | Dilip Kumar <dilipbalaut(at)gmail(dot)com> |
---|---|
To: | Ashutosh Sharma <ashu(dot)coek88(at)gmail(dot)com> |
Cc: | Neha Sharma <neha(dot)sharma(at)enterprisedb(dot)com>, Greg Nancarrow <gregn4422(at)gmail(dot)com>, Robert Haas <robertmhaas(at)gmail(dot)com>, Andres Freund <andres(at)anarazel(dot)de>, Heikki Linnakangas <hlinnaka(at)iki(dot)fi>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org> |
Subject: | Re: [Proposal] Fully WAL logged CREATE DATABASE - No Checkpoints |
Date: | 2021-12-13 14:29:39 |
Message-ID: | CAFiTN-uMp7V=oj23ZACUS--nKGdJLeGU+BsUqw3dtmeg0Bf+PA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Mon, Dec 13, 2021 at 8:34 AM Ashutosh Sharma <ashu(dot)coek88(at)gmail(dot)com> wrote:
>
> + /*
> + * If the relation is from the default tablespace then we need to
> + * create it in the destinations db's default tablespace. Otherwise,
> + * we need to create in the same tablespace as it is in the source
> + * database.
> + */
>
> This comment looks a bit confusing to me especially because when we say destination db's default tablespace people may think of pg_default tablespace (at least I think so). Basically what you are trying to say here - "If the relation exists in the same tablespace as the src database, then in the destination db also it should be the same or something like that.. " So, why not put it that way instead of referring to it as the default tablespace. It's just my view. If you disagree you can ignore it.
>
> --
>
> + else if (src_dboid == dst_dboid)
> + continue;
> + else
> + dstrnode.spcNode = srcrnode.spcNode;;
>
> There is an extra semicolon here.
Noted. I will fix them in the next version.
--
Regards,
Dilip Kumar
EnterpriseDB: http://www.enterprisedb.com
From | Date | Subject | |
---|---|---|---|
Next Message | Ashutosh Sharma | 2021-12-13 14:36:52 | Re: Multi-Column List Partitioning |
Previous Message | Dilip Kumar | 2021-12-13 14:28:26 | Re: Add sub-transaction overflow status in pg_stat_activity |