RE: Disable WAL logging to speed up data loading - Mailing list pgsql-hackers

From osumi.takamichi@fujitsu.com
Subject RE: Disable WAL logging to speed up data loading
Date
Msg-id OSBPR01MB488874AED9551DB4FAFEC0B5EDAA0@OSBPR01MB4888.jpnprd01.prod.outlook.com
Whole thread Raw
In response to RE: Disable WAL logging to speed up data loading  ("tsunakawa.takay@fujitsu.com" <tsunakawa.takay@fujitsu.com>)
Responses RE: Disable WAL logging to speed up data loading  ("tsunakawa.takay@fujitsu.com" <tsunakawa.takay@fujitsu.com>)
Re: Disable WAL logging to speed up data loading  (Kyotaro Horiguchi <horikyota.ntt@gmail.com>)
List pgsql-hackers
On Tuesday, January 12, 2021 12:52 PM Takayuki/綱川 貴之 <tsunakawa.takay@fujitsu.com> wrote:
> From: Osumi, Takamichi/大墨 昂道 <osumi.takamichi@fujitsu.com>
> > I updated the patch following this discussion, and fixed the
> > documentation as well.
> 
> 
> +          (rmid == RM_GIST_ID && info == RM_GIST_ID) ||
> +          (rmid == RM_GENERIC_ID)))
> 
> info is wrong for GiST, and one pair of parenthesis is unnecessary.  The above
> would be:
> 
> +          (rmid == RM_GIST_ID && info ==
> XLOG_GIST_ASSIGN_LSN) ||
> +          rmid == RM_GENERIC_ID))
Oops, sorry for this careless mistake.
Fixed. And again, regression test produces no failure.

Best Regards,
    Takamichi Osumi

Attachment

pgsql-hackers by date:

Previous
From: Bharath Rupireddy
Date:
Subject: Fix a typo in SearchCatCache function comment
Next
From: Michael Paquier
Date:
Subject: Re: Reduce the number of special cases to build contrib modules on windows