Re: Sample in documentation

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Igor Korot <ikorot01(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Sample in documentation
Date: 2017-05-07 17:09:13
Message-ID: 1687.1494176953@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Igor Korot <ikorot01(at)gmail(dot)com> writes:
> On Sat, May 6, 2017 at 8:22 PM, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>> I do not see any arrays named "length", nor even any arrays of size 2,
>> on that page, so I'm pretty confused what you're talking about. Please
>> be more specific.

> I based my code on this:
> http://stackoverflow.com/questions/26911855/correct-way-to-bind-numeric-values-to-prepared-sql.
> Sorry about that.

Ah. Well, we can't be responsible for random bits of code posted on
stackoverflow.

> Nevertheless, while it did compile by MSVC and gcc, it looks like
> Xcode fails with compiling that code.

Seems to me clang is being overly picky, but whatever.

> So, is there any solution to this which can be used cross-platform?

Don't use an initializer, assign the values one at a time.

Back in the day we used to avoid use of initializers for local variables
because they weren't too portable. It's depressing to see clang
introducing new reasons for them not to be portable.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Igor Korot 2017-05-07 17:20:34 Re: Sample in documentation
Previous Message Adam Brusselback 2017-05-07 16:16:16 Re: Caching and Blobs in PG? Was: Can PG replace redis, amqp, s3 in the future?