Re: pgsql/src/backend/nodes (copyfuncs.c outfuncs.c print.c)

Поиск
Список
Период
Сортировка
От Hiroshi Inoue
Тема Re: pgsql/src/backend/nodes (copyfuncs.c outfuncs.c print.c)
Дата
Msg-id 39F90518.F7A206C4@tpf.co.jp
обсуждение исходный текст
Ответ на pgsql/src/backend/nodes (copyfuncs.c outfuncs.c print.c)  (Tom Lane <tgl@postgresql.org>)
Список pgsql-committers
Tom Lane wrote:

> Hiroshi Inoue <Inoue@tpf.co.jp> writes:
> > begin;
> > declare myc cursor for select * from t1 limit all;
> > fetch 20 in myc; (the first page)
> > ...(interaction)
> > fetch 20 in myc; (the next page)
> > ..(interaction)
> > fetch backward 20 in myc; (the previous page)
> > ...
>
> > What I expect here is to get rows of each page in
> > an average response time not the total throughput
> > of db operation.
>
> Yes, but why should the presence of "limit all" affect that?
> It's not apparent to me why the optimizer should treat this
> case differently from plain
> declare myc cursor for select * from t1;
>

Am I misunderstanding ?
Doesn't optimizer make the plan for the query
"select * for t1" which would use SeqScan
in most cases ?

Regards, Hiroshi Inoue



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: pgsql/src/backend/nodes (copyfuncs.c outfuncs.c print.c)
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: pgsql/src/makefiles (Makefile.freebsd Makefile.hpux Makefile.irix5 Makefile.linux Makefile.netbsd Makefile.openbsd Makefile.osf Makefile.solaris Makefile.unixware)