8000 Fix duplicate log id in ExecutionBlockImpl (#14522) · arangodb/arangodb@d9e2450 · GitHub
[go: up one dir, main page]

Skip to content

Commit d9e2450

Browse files
authored
Fix duplicate log id in ExecutionBlockImpl (#14522)
1 parent 6d812e2 commit d9e2450

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arangod/Aql/ExecutionBlockImpl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1411,7 +1411,7 @@ ExecutionBlockImpl<Executor>::executeWithoutTrace(AqlCallStack const& callStack)
14111411
TRI_ASSERT(ctx.clientCall.getLimit() > 0);
14121412
TRI_ASSERT(ctx.clientCall.getSkipCount() == 0);
14131413

1414-
LOG_QUERY("1f786", DEBUG) << printTypeInfo() << " call produceRows " << ctx.clientCall;
1414+
LOG_QUERY("1f787", DEBUG) << printTypeInfo() << " call produceRows " << ctx.clientCall;
14151415
if (outputIsFull()) {
14161416
// We need to be able to write data
14171417
// But maybe the existing block is full here

utils/checkLogIds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def is_good(status):
1818
return status in (Status.OK, Status.OK_REPLACED)
1919

2020
import re
21-
g_log_topic_pattern = re.compile(r'(?P<macro>LOG_(TOPIC(_IF)?|TRX))\((?P<param>[^),]*),(?P<rest>.*)')
21+
g_log_topic_pattern = re.compile(r'(?P<macro>LOG_(TOPIC(_IF)?|TRX|QUERY))\((?P<param>[^),]*),(?P<rest>.*)')
2222

2323
import hashlib
2424
g_hash_algorithm = hashlib.md5()

0 commit comments

Comments
 (0)
0