Statement Timeout Message Incorrect - Mailing list pgsql-bugs

From elein
Subject Statement Timeout Message Incorrect
Date
Msg-id 20080123192206.GA14970@varlena.com
Whole thread Raw
Responses Re: Statement Timeout Message Incorrect
Re: Statement Timeout Message Incorrect
List 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 by date:

Previous
From: "David Gradwell"
Date:
Subject: BUG #3897: plJava dll still doesn't load
Next
From: Tom Lane
Date:
Subject: Re: Statement Timeout Message Incorrect