From: Alvaro Herrera Date: Wed, 21 Nov 2018 18:35:40 +0000 (-0300) Subject: Fix typo in commit 6f7d02aa60b7 X-Git-Tag: REL_12_BETA1~1179 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=03e10b962f3ada1953cf5bfc93b04459502e0993;p=postgresql.git Fix typo in commit 6f7d02aa60b7 Per pink buildfarm. --- diff --git a/src/backend/executor/instrument.c b/src/backend/executor/instrument.c index 0f2da221483..3ecb52c0b36 100644 --- a/src/backend/executor/instrument.c +++ b/src/backend/executor/instrument.c @@ -63,7 +63,7 @@ void InstrStartNode(Instrumentation *instr) { if (instr->need_timer && - INSTR_TIME_SET_CURRENT_LAZY(instr->starttime)) + !INSTR_TIME_SET_CURRENT_LAZY(instr->starttime)) elog(ERROR, "InstrStartNode called twice in a row"); /* save buffer usage totals at node entry, if needed */