Re: [HACKERS] alter_table.sql

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [HACKERS] alter_table.sql
Дата
Msg-id 20333.952445948@sss.pgh.pa.us
обсуждение исходный текст
Ответ на alter_table.sql  (Patrick Welche <prlw1@newn.cam.ac.uk>)
Ответы Re: [HACKERS] alter_table.sql
Список pgsql-hackers
Patrick Welche <prlw1@newn.cam.ac.uk> writes:
> In the alter table regression test, alter_table.sql, it says:
> -- 20 values, sorted
> SELECT unique1 FROM ten_k WHERE unique1 < 20;
> Why sorted? Shouldn't it be
> SELECT unique1 FROM ten_k WHERE unique1 < 20 ORDER BY unique1;
> if we really expect the output to be sorted?

The regression test author evidently expected the optimizer to choose an
indexscan, which will produce the values in sorted order as a byproduct.
I agree this code is bogus in a theoretical sense, but I don't think
it's worth worrying about until we alter the optimizer so far that it
doesn't choose an indexscan for this query.  (Indeed, that might be a
sign of an optimizer bug --- so I'd look into why the behavior changed
before changing the regress test.)

Since our regress tests are checked on the basis of exact equality of
output, in theory every single regress test SELECT that doesn't specify
"ORDER BY" is broken, because in theory the system could choose to put
out the tuples in some other order than what's in the regress test
reference outputs.  But in practice, the implementation-dependent
ordering you get is reproducible across platforms, so the tests
accomplish what they're supposed to.  Every so often we have to throw in
an ORDER BY when we find that one of the test cases isn't so
reproducible.
        regards, tom lane


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

Предыдущее
От: Andrzej Mazurkiewicz
Дата:
Сообщение: How can I create trigger on system table, for on example pg_class ???
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] library policy question