pgsql: Reduce recursion depth in recently-added regression test.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Reduce recursion depth in recently-added regression test.
Дата
Msg-id E1PDhMS-0002BX-4S@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Reduce recursion depth in recently-added regression test.

Some buildfarm members fail the test with the original depth of 10 levels,
apparently because they are running at the minimum max_stack_depth setting
of 100kB and using ~ 10k per recursion level.  While it might be
interesting to try to figure out why they're eating so much stack, it isn't
likely that any fix for that would be back-patchable.  So just change the
test to recurse only 5 levels.  The extra levels don't prove anything
correctness-wise anyway.

Branch
------
REL9_0_STABLE

Details
-------
http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=fb9042f77232bf30e3743e87fbcd1f1e2b29bde5

Modified Files
--------------
src/test/regress/expected/plpgsql.out |    8 ++++----
src/test/regress/sql/plpgsql.sql      |    6 +++---
2 files changed, 7 insertions(+), 7 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Reduce recursion depth in recently-added regression test.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Reimplement planner's handling of MIN/MAX aggregate optimization