Re: [HACKERS] pgbench regression test failure
От | Steve Singer |
---|---|
Тема | Re: [HACKERS] pgbench regression test failure |
Дата | |
Msg-id | 20171112024739.23750.54311.pgcf@coridan.postgresql.org обсуждение исходный текст |
Ответ на | Re: [HACKERS] pgbench regression test failure (Fabien COELHO <coelho@cri.ensmp.fr>) |
Ответы |
Re: [HACKERS] pgbench regression test failure
|
Список | pgsql-hackers |
The following review has been posted through the commitfest application: make installcheck-world: tested, failed Implements feature: not tested Spec compliant: not tested Documentation: not tested This causes the pgbench tests to fail (consistently) with not ok 194 - pgbench late throttling stdout /(?^:processed: [01]/10)/ When I run pgbench manually I get (-t 10 --rate=100000 --latency-limit=1 -n -r) number of transactions actually processed: 10/10 number of transactions skipped: 10 (100.000 %) Prior to the patch I was getting. number of transactions actually processed: 0/10 number of transactions skipped: 10 (100.000 %) @@ -3539,7 +3542,7 @@ printResults(TState *threads, StatsData *total, instr_time total_time,^M {^M printf("numberof transactions per client: %d\n", nxacts);^M printf("number of transactions actually processed:" INT64_FORMAT "/%d\n",^M - total->cnt - total->skipped, nxacts * nclients);^M + total->cnt, nxacts * nclients);^M I think you want ntx instead of total->cnt here. The new status of this patch is: Waiting on Author -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers
В списке pgsql-hackers по дате отправления: