RE: [BUGS] Segfault in pgsql, Sparc Solaris 2.7, Postgresql 7.1.1

2001-05-14 Thread Paul McGarry
Hi Justin, > I'm not sure if it'll be of assistance with this, but there's > a Solaris > specific installation guide for PostgreSQL at : > http://techdocs.postgresql.org/installguides.php#solaris I've compiled postgres 6.5 and 7.0 so many times I just jumped in and went with it :) Upgrading to

Re: [BUGS] Postgres bug (working with iserverd)

2001-05-14 Thread Tom Lane
"Vadim Mikheev" <[EMAIL PROTECTED]> writes: >> However, EvalPlanQual still leaks more memory than suits me --- >> auxiliary memory allocated by the plan nodes is not recovered. > Isn't plan shutdown supposed to free memory? Yeah, but it leaks all over the place; none of the plan node types bothe

[BUGS] Segfault in pgsql, Sparc Solaris 2.7, Postgresql 7.1.1

2001-05-14 Thread Paul McGarry
Howdy, I'm getting a segfault from psql when a createdb is attempted. Postgresql is configured with: ./configure --prefix=/opt/pgsql --enable-syslog and seems to compile without trouble (gcc 2.95.2), but fails during the createdb stage of the regressions tests. Installing and attempting to do

Re: [BUGS] REQ: build src/backend/postgres w/o -lncurses or -lreadline

2001-05-14 Thread Tom Lane
> It is my understanding that having them there causes no bloat in the > binary. No symbols are resolved in those libs. >> >> Perhaps not, but the postgres binary then becomes dependent on those >> libs being available (if they're shared). > Good point. Autoconf has a bad habit of putting all

Re: [BUGS] Postgres bug (working with iserverd)

2001-05-14 Thread Tom Lane
I wrote: > The direct cause of the problem is that EvalPlanQual isn't completely > initializing the estate that it sets up for re-evaluating the plan. > In particular it's not filling in es_result_relations and > es_num_result_relations, which need to be set up if the top plan node > is an Append.

[BUGS] Bug in configure.in, minor annoyance, PostgreSQL 7.2devel & FreeBSD2.2.8

2001-05-14 Thread Trond Endrestøl
Hi, and thank you for a great ORDBMS. The configure.in file erraneous assumes that FreeBSD 1.x and 2.x have ELF capability. While this is true to some extent, this assumption makes it impossible to compile PostgreSQL 7.1 and 7.2devel without the --disable-shared switch during configuration. Bel

Re: [BUGS] REQ: build src/backend/postgres w/o -lncurses or -lreadline

2001-05-14 Thread Todd R. Eigenschink
Bruce Momjian writes: >> I realize this is a sort of special-purpose request. It's not a big >> deal to build the whole thing, then just relink src/backend/postgres >> without those libs. It just feels dirty to have them there when they >> aren't needed. >> > >It is my understanding that having