Re: Take skip header out of a loop in COPY FROM - Mailing list pgsql-hackers

From Adam Lee
Subject Re: Take skip header out of a loop in COPY FROM
Date
Msg-id 20190822095447.GA57367@mars.local
Whole thread Raw
In response to Re: Take skip header out of a loop in COPY FROM  (Heikki Linnakangas <hlinnaka@iki.fi>)
Responses Re: Take skip header out of a loop in COPY FROM  (Heikki Linnakangas <hlinnaka@iki.fi>)
List pgsql-hackers
On Thu, Aug 22, 2019 at 11:48:31AM +0300, Heikki Linnakangas wrote:
> On 22/08/2019 11:31, Surafel Temesgen wrote:
> > Hello,
> > 
> > Even if skipping header is done only once its checked and skipped in a
> > loop. If I don’t miss something it can be done out side a loop like
> > attached patch
> 
> You may be on to something, but if we move it to CopyFrom(), as in your
> patch, then it won't get executed e.g. from the calls in file_fdw. file_fdw
> calls BeginCopyFrom(), followed by NextCopyFrom(); it doesn't use
> CopyFrom().
> 
> - Heikki

Yes.

My next thought is to call unlikely() here, but we don't have it...
https://www.postgresql.org/message-id/CABRT9RC-AUuQL6txxsoOkLxjK1iTpyexpbizRF4Zxny1GXASGg%40mail.gmail.com

-- 
Adam Lee



pgsql-hackers by date:

Previous
From: "movead.li@highgo.ca"
Date:
Subject: Email to hackers for test coverage
Next
From: Heikki Linnakangas
Date:
Subject: Re: Take skip header out of a loop in COPY FROM