[BUGS] ubuntu 9.10 AMD64 undefined reference to `optreset'

2010-05-05 Thread Graham Swallow
9.0 beta1 tarball configure --prefix=/tmp/PG9/ gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -L../../src/port -Wl,--as-needed -Wl,-rpath,'/tmp/pg9/lib' -Wl,-E ... long list of .o files ... ../../src/port/libpgport_srv.

Re: [BUGS] ubuntu 9.10 AMD64 undefined reference to `optreset'

2010-05-05 Thread Tom Lane
Graham Swallow writes: > 9.0 beta1 tarball > configure --prefix=/tmp/PG9/ > ... > postmaster/postmaster.o: In function `PostmasterMain': > postmaster.c:(.text+0x42ac): undefined reference to `optreset' > tcop/postgres.o: In function `process_postgres_switches': > postgres.c:(.text+0x12fb): undefin

[BUGS] BUG #5449: "elements" are not parameter

2010-05-05 Thread KOIZUMI Satoru
The following bug has been logged online: Bug reference: 5449 Logged by: KOIZUMI Satoru Email address: koizumi...@minos.ocn.ne.jp PostgreSQL version: 9.0beta1 Operating system: MacOS X Description:"elements" are not parameter Details: At Table F-7 "elements" are enc

[BUGS] BUG #5448: psql \set does not terminate if variable is referenced recursively

2010-05-05 Thread Francis
The following bug has been logged online: Bug reference: 5448 Logged by: Francis Email address: fmark...@gmail.com PostgreSQL version: 8.4.3 Operating system: Ubuntu linux 10.04 Description:psql \set does not terminate if variable is referenced recursively Details:

[BUGS] question

2010-05-05 Thread Akul Gupta
sir, i m facing a problem. While conneting through pgsql from PHP, it asks for a password. While i have not given any password at the time of installation. So, please tell me the solution. Reply as soon as possible. I am waiting. --Akul gupta

Re: [BUGS] question

2010-05-05 Thread Ashesh Vashi
How did you install PostgreSQL? -- Thanks & Regards, Ashesh Vashi EnterpriseDB INDIA: Enterprise Postgres Company On Wed, May 5, 2010 at 10:13 AM, Akul Gupta wrote: > sir, i m facing a problem. > While conneting through pgsql from PHP, it asks for a password. > W

[BUGS] ubuntu 9.10 AMD64 undefined reference to `optreset'

2010-05-05 Thread Graham Swallow
-- Forwarded message -- Date: 5 May 2010 15:15 Subject: Re: [BUGS] ubuntu 9.10 AMD64 undefined reference to `optreset' configure:21408: checking for optreset configure:21434: gcc -o conftest -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-label

Re: [BUGS] question

2010-05-05 Thread Jaime Casanova
On Tue, May 4, 2010 at 11:43 PM, Akul Gupta wrote: > sir, i m facing a problem. > While conneting through pgsql from PHP, it asks for a password. > While i have not given any password at the time of installation. > So, please tell me the solution. > Reply as soon as possible. > I am waiting. > Th

Re: [BUGS] BUG #5449: "elements" are not parameter

2010-05-05 Thread Heikki Linnakangas
KOIZUMI Satoru wrote: > At Table F-7 "elements" are enclosed by . > > | portion of array starting at position > | start, len elements > > But a parameter of subarray() is "len", not "element", so the sentence would > be the following: > > | portion of array starting at position > | start, len e

Re: [BUGS] BUG #5448: psql \set does not terminate if variable is referenced recursively

2010-05-05 Thread Kevin Grittner
"Francis" wrote: > psql \set does not terminate if a variable is referenced > recursively. For example, the following will hang the psql client > in a nasty way: > > db=# \set n 1 > db=# \set n (:n + 1) It seem to me that the above doesn't hang the psql client, but a subsequent reference to

Re: [BUGS] BUG #5448: psql \set does not terminate if variable is referenced recursively

2010-05-05 Thread Tom Lane
"Kevin Grittner" writes: > "Francis" wrote: >> psql \set does not terminate if a variable is referenced >> recursively. For example, the following will hang the psql client >> in a nasty way: >> >> db=# \set n 1 >> db=# \set n (:n + 1) > It seem to me that the above doesn't hang the psql clie

Re: [BUGS] BUG #5448: psql \set does not terminate if variable is referenced recursively

2010-05-05 Thread Kevin Grittner
Tom Lane wrote: > We could print a message and treat the inner > expansion as empty --- is that good enough? If there's any way to throw an error, that seems better. I can imagine someone getting confused by silent failure here. On the other hand, since this probably doesn't happen very often,

Re: [BUGS] BUG #5448: psql \set does not terminate if variable is referenced recursively

2010-05-05 Thread Tom Lane
"Kevin Grittner" writes: > Tom Lane wrote: >> We could print a message and treat the inner >> expansion as empty --- is that good enough? > If there's any way to throw an error, that seems better. I can > imagine someone getting confused by silent failure here. On the > other hand, since this

Re: [BUGS] BUG #5448: psql \set does not terminate if variable is referenced recursively

2010-05-05 Thread Kevin Grittner
Tom Lane wrote: > I think we need to add an explicit recursion test and suppress > further expansion of the variable when we see it > We can definitely print a message Sounds perfect to me. -Kevin -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your sub