aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2018-11-21 15:35:40 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2018-11-21 15:35:40 -0300
commit03e10b962f3ada1953cf5bfc93b04459502e0993 (patch)
treeb099ccfbe7061b4bdf669a9cabb71517db2256ee /src
parentee07e38c14a06a8479d2605406345c4a868465ae (diff)
downloadpostgresql-03e10b962f3ada1953cf5bfc93b04459502e0993.tar.gz
postgresql-03e10b962f3ada1953cf5bfc93b04459502e0993.zip
Fix typo in commit 6f7d02aa60b7
Per pink buildfarm.
Diffstat (limited to 'src')
-rw-r--r--src/backend/executor/instrument.c2
1 files changed, 1 insertions, 1 deletions
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 */