Fix stats collections in some cases.

Calling a -with-timing from within a with-stats-collection macro is
redundant and will have the numbers counted twice. Which in this case
didn't happen because the stats label was manually copied, but borked
with a typo in one copy.
This commit is contained in:
Dimitri Fontaine 2016-08-28 20:29:53 +02:00
parent 0b06bc6ad6
commit f2dcf982d8

View File

@ -315,11 +315,10 @@
(lp:end-kernel :wait t))
;; turn unique indexes into pkeys now
(with-stats-collection ("Constraints" :section section)
(pgsql-connect-and-execute-with-timing target
section
"Constrants"
pkeys)))))))
(pgsql-connect-and-execute-with-timing target
section
"Constraints"
pkeys))))))
;;;