pgsql: Refactor the TAP test of auto_explain

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Refactor the TAP test of auto_explain
Дата
Msg-id E1o74JE-000b4L-6e@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Refactor the TAP test of auto_explain

Previously, the tests were structured so as all the queries whose plans
are checked run first, followed by pattern checks using the full set of
server logs.  This can be problematic when extending the tests, as this
increases query plan overlaps, where two tests finish by having similar
plan outputs potentially invalidating the tests wanted.

The tests are refactored so as log content matches are checked in
isolation of each query run, by grabbing the position of the server logs
before running each query whose plan is generated in the logs.  This
avoids issues when extending the tests, something that would become a
larger problem with a follow-up patch that adds a new GUC in
auto_explain to control the size of the each parameter logged.

Author: Dagfinn Ilmari Mannsåker
Discussion: https://postgr.es/m/87ee09mohb.fsf@wibble.ilmari.org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/550bc0a6c0c6af20d34c16902f0ed977550396eb

Modified Files
--------------
contrib/auto_explain/t/001_auto_explain.pl | 90 ++++++++++++++++++++++++------
1 file changed, 74 insertions(+), 16 deletions(-)


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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Change some unnecessary MemSet calls
Следующее
От: Michael Paquier
Дата:
Сообщение: pgsql: Fix code comments still referring to pg_start/stop_backup()