Improved output [skip ci]

This commit is contained in:
Andrew Kane
2022-02-11 15:51:14 -08:00
parent 9b46987e73
commit 7dd934913d

View File

@@ -56,7 +56,7 @@
(code); \
INSTR_TIME_SET_CURRENT(duration); \
INSTR_TIME_SUBTRACT(duration, start); \
elog(INFO, "%s: %f ms", name, INSTR_TIME_GET_MILLISEC(duration)); \
elog(INFO, "%s: %.3f ms", name, INSTR_TIME_GET_MILLISEC(duration)); \
} while (0)
#else
#define Bench(name, code) (code)