RE: [HACKERS] select * from ..;vacuum crashes - Mailing list pgsql-hackers

From Taral
Subject RE: [HACKERS] select * from ..;vacuum crashes
Date
Msg-id 000001bdf0df$a94cd540$3b291f0a@taral
Whole thread Raw
In response to select * from ..;vacuum crashes  (Tatsuo Ishii <t-ishii@sra.co.jp>)
List pgsql-hackers
> begin;
> select * from getting;
> vacuum;
> end;

Question: Does the following really make sense?

begin transaction;
select * from table;
vacuum;
abort transaction;

Taral

pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] select * from ..;vacuum crashes
Next
From: Tatsuo Ishii
Date:
Subject: Re: [HACKERS] select * from ..;vacuum crashes