Statement Timeout Message Incorrect

Поиск
Список
Период
Сортировка
От elein
Тема Statement Timeout Message Incorrect
Дата
Msg-id 20080123192206.GA14970@varlena.com
обсуждение исходный текст
Ответы Re: Statement Timeout Message Incorrect  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Statement Timeout Message Incorrect  (elein <elein@varlena.com>)
Список pgsql-bugs
Running 8.3RC1

I have an sql script where one or more create index statements
raise a statement timeout message. The statement timeout is
set to 1d.

The script runs in ~3 hours including the timeout messages.

The script does this:

BEGIN;
create table temp.xxx ...
insert into temp.xxx ...
COMMIT;
create index one on temp.xxx(col1);
create index one on temp.xxx(col2);
create index one on temp.xxx(col3);
create index one on temp.xxx(col4);
BEGIN;
drop table public.xxx;
alter table temp.xxx set schema public;
COMMIT;

I have sprinkled the script with show statement_timeout
and it always returns 1D.

I suspect either a problem with counting statement time
or another error is using the statement timeout message.

Ideas?

--elein
elein@varlena.com

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

Предыдущее
От: "David Gradwell"
Дата:
Сообщение: BUG #3897: plJava dll still doesn't load
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Statement Timeout Message Incorrect