Re: Re: backend dies on 7.1.1 loading large datamodel.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Re: backend dies on 7.1.1 loading large datamodel.
Дата
Msg-id 24360.989281713@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: backend dies on 7.1.1 loading large datamodel.  (Robert Hentosh <hentosh@io.com>)
Ответы Re: Re: backend dies on 7.1.1 loading large datamodel.  (Robert Hentosh <hentosh@io.com>)
Список pgsql-bugs
Robert Hentosh <hentosh@io.com> writes:
> I just put the datamodel at http://www.io.com/~hentosh/sql.tar.gz

Hm.  I notice that postgres.sql hardwires the location of the plpgsql
handler:

create function plpgsql_call_handler() RETURNS opaque
as '/usr/local/pgsql/lib/plpgsql.so' language 'c';

create trusted procedural language 'plpgsql'
HANDLER plpgsql_call_handler
LANCOMPILER 'PL/pgSQL';

If this were to suck in a wrong-version copy of plpgsql.so (and yes,
I think 7.1 vs 7.1.1 could be wrong version) then that could cause
failures.

postgres-pgtcl.sql is equally unwise about the pltcl handler.

This is *not* the source of your problem, since I was able to
reproduce the crash even with a proper "createlang plpgsql" used
instead of the bogus commands.  But you might want to pass on the
observation to the OpenACS guys.

On with debugging ...

            regards, tom lane

В списке pgsql-bugs по дате отправления:

Предыдущее
От: pgsql-bugs@postgresql.org
Дата:
Сообщение: interval( 'seconds 27960' ) is broken
Следующее
От: Robert Hentosh
Дата:
Сообщение: Re: Re: backend dies on 7.1.1 loading large datamodel.