Re: [HACKERS] WIP Patch: Pgbench Serialization and deadlock errors

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: [HACKERS] WIP Patch: Pgbench Serialization and deadlock errors
Дата
Msg-id 20180711174906.oscbjjivg6gc2riu@alvherre.pgsql
обсуждение исходный текст
Ответ на Re: [HACKERS] WIP Patch: Pgbench Serialization and deadlock errors  (Marina Polyakova <m.polyakova@postgrespro.ru>)
Ответы Re: [HACKERS] WIP Patch: Pgbench Serialization and deadlock errors
Список pgsql-hackers
On 2018-Jul-11, Marina Polyakova wrote:

> can we try something like this?
> 
> PGBENCH_ERROR_START(DEBUG_FAIL)
> {
>     PGBENCH_ERROR("client %d repeats the failed transaction (try %d",
>                   st->id, st->retries + 1);
>     if (max_tries)
>         PGBENCH_ERROR("/%d", max_tries);
>     if (latency_limit)
>     {
>         PGBENCH_ERROR(", %.3f%% of the maximum time of tries was used",
>                       getLatencyUsed(st, &now));
>     }
>     PGBENCH_ERROR(")\n");
> }
> PGBENCH_ERROR_END();

I didn't quite understand what these PGBENCH_ERROR() functions/macros
are supposed to do.  Care to explain?

-- 
Álvaro Herrera                https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: In pageinspect, perform clean-up after testing gin-related functions
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: Re: [PATCH] Add missing type conversion functions for PL/Python