Re: pgsql: Speed up conversion of signed integers to C strings.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Robert Haas <robertmhaas(at)gmail(dot)com>
Cc: pgsql-committers(at)postgresql(dot)org
Subject: Re: pgsql: Speed up conversion of signed integers to C strings.
Date: 2010-11-20 03:48:58
Message-ID: 6577.1290224938@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Robert Haas <rhaas(at)postgresql(dot)org> writes:
> Speed up conversion of signed integers to C strings.

This patch breaks the build here:

gcc -O1 -Wall -Wmissing-prototypes -Wpointer-arith -fno-strict-aliasing -g -I../../../../src/include -D_XOPEN_SOURCE_EXTENDED -c -o numutils.o numutils.c
numutils.c: In function `pg_ltoa':
numutils.c:139: `INT32_MIN' undeclared (first use in this function)
numutils.c:139: (Each undeclared identifier is reported only once
numutils.c:139: for each function it appears in.)
numutils.c: In function `pg_lltoa':
numutils.c:190: `INT64_MIN' undeclared (first use in this function)
make: *** [numutils.o] Error 1
$
regards, tom lane

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2010-11-20 04:47:16 Re: pgsql: Speed up conversion of signed integers to C strings.
Previous Message Tom Lane 2010-11-20 03:30:01 pgsql: Fix leakage of cost_limit when multiple autovacuum workers are a