Re: Why sequential scan for currval? - Mailing list pgsql-general

From John Barham
Subject Re: Why sequential scan for currval?
Date
Msg-id 4f34febc05042700323fa02243@mail.gmail.com
Whole thread Raw
In response to Why sequential scan for currval?  (John Barham <jbarham@gmail.com>)
List pgsql-general
> test=# explain select s from tt where id = currval('tt_id_key');
>                       QUERY PLAN
> ------------------------------------------------------
>  Seq Scan on tt  (cost=0.00..1734.42 rows=1 width=32)
>    Filter: (id = currval('tt_id_key'::text))
> (2 rows)

should be:

test=# explain select s from tt where id = currval('tt_id_seq'); --
tt_id_seq vs. tt_id_key
                      QUERY PLAN
------------------------------------------------------
 Seq Scan on tt  (cost=0.00..1734.42 rows=1 width=32)
   Filter: (id = currval('tt_id_seq'::text))
(2 rows)

but the question still holds.

  John

pgsql-general by date:

Previous
From: John Barham
Date:
Subject: Why sequential scan for currval?
Next
From: Chris Green
Date:
Subject: Re: www.thekompany.com rekall