Re: COPY FROM performance improvements

From: "Luke Lonergan" <llonergan(at)greenplum(dot)com>
To: "Bruce Momjian" <pgman(at)candle(dot)pha(dot)pa(dot)us>
Cc: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>, "Alon Goldshuv" <agoldshuv(at)greenplum(dot)com>, "Andrew Dunstan" <andrew(at)dunslane(dot)net>, pgsql-patches(at)postgresql(dot)org
Subject: Re: COPY FROM performance improvements
Date: 2005-06-27 04:17:14
Message-ID: BEE4CBDC.7DEC%llonergan@greenplum.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

Bruce,
>
> Those parentheses are still there:
>
> for (start = s; (*s != c) && (s < (start + len)) ; s++)
>
> It should be:
>
> for (start = s; *s != c && s < start + len; s++)

Thanks - didn't understand what you'd meant before. They're gone now.

- Luke

Attachment Content-Type Size
fast_copy_V10_8.1.patch application/octet-stream 55.1 KB

In response to

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Neil Conway 2005-06-27 04:50:38 Re: limiting connections per user/database
Previous Message Joe Conway 2005-06-27 04:08:15 Re: [SQL] ARRAY() returning NULL instead of ARRAY[]