From: | "Jan Weerts" <j(dot)weerts(at)i-views(dot)de> |
---|---|
To: | "Mike Nolan" <nolan(at)gw(dot)tssi(dot)com> |
Cc: | "pgsql general list" <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Schemas not created on restore |
Date: | 2004-01-15 10:04:02 |
Message-ID: | B349BABAF9A92F4D9FBFCADF8D5FEDD5081203@ivsrv03.i-views.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
>When I try to build 7.4.1 on that system, I get the
>following error in the regression test:
>
>/home/postgres/src/postgresql-7.4.1/src/test/regress/./tmp_chec
k/install//usr/local/pgsql/bin/createdb: relocation error:
>/home/postgres/src/postgresql-7.4.1/sr
>c/test/regress/./tmp_check/install//usr/local/pgsql/bin/created
>b: undefined symbol: get_progname
>pg_regress: createdb failed
>
>Do I need to actually install 7.4, or can I just use pg_dump
>and pg_dumpall from it? (I get the same 'undefined symbol:
>get_progname' message when I try that.)
Got bitten by that myself yesterday. The problem seems to be,
that you configured the 7.4.1 to reside (after install)
in the same location, where your 7.3 currently is. Somehow a
wrong library or executable is used in the regression tests
from the 7.3 installation.
Quick solution: make clean; configure --prefix=/different/path; make; make
check.
Btw. make check might drop an error on the random select test,
but that error is truly random, i.e. in a second 'make check'
it might work like a charm.
But you definitly want to go for 7.4. An application we use, heavily relies
on IN and NOT IN queries with subselects
(posted here before). Until yesterday you could wander off
to fetch a <insert personal favorite beverage here>, now
these queries are about 20 times faster.... hmmm maybe I
should switch back to 7.3. to have a good excuse lingering
in the kitchen :)
Jan
From | Date | Subject | |
---|---|---|---|
Next Message | Janning Vygen | 2004-01-15 10:44:59 | postgresql Error handling in client app |
Previous Message | Együd Csaba | 2004-01-15 09:57:51 | Re: Using regular expressions in LIKE |