Re: Transforms patch not respecting if indentation

From: Magnus Hagander <magnus(at)hagander(dot)net>
To: Michael Paquier <michael(dot)paquier(at)gmail(dot)com>
Cc: PostgreSQL mailing lists <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Transforms patch not respecting if indentation
Date: 2015-05-07 09:42:56
Message-ID: CABUevExvFF8CTp_bVAm9tU70W+XOFv1V3ir+ZF17OL8h4u0V2w@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Mon, May 4, 2015 at 6:45 AM, Michael Paquier <michael(dot)paquier(at)gmail(dot)com>
wrote:

> Hi all,
>
> Coverity complained about a small indentation issue in ruleutils.c:
> + appendStringInfoString(buf, "\n TRANSFORM ");
> + for (i = 0; i < ntypes; i++)
> + {
> + if (i != 0)
> + appendStringInfoString(buf, ", ");
> + appendStringInfo(buf, "FOR TYPE %s",
> format_type_be(trftypes[i]));
> + }
>

Applied, thanks.

--
Magnus Hagander
Me: http://www.hagander.net/
Work: http://www.redpill-linpro.com/

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Volker Aßmann 2015-05-07 09:53:21 Re: Disabling trust/ident authentication configure option
Previous Message Magnus Hagander 2015-05-07 09:42:51 Re: Resource leak in pg_dump.c caused by transforms