代码注释 #36

Open
Lohax wants to merge 18 commits from Lohax/openGauss-server:master into master
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 60ea557732 - Show all commits

View File

@ -591,7 +591,8 @@ void InstrEndLoop(Instrumentation* instr)
/* Skip if nothing has happened, or already shut down */
if (!instr->running)
return;
/*If the "starttime" field of the node is not 0, the node has not called the InstrStopNode function to stop the timing, and an error may have occurred*/
if (!INSTR_TIME_IS_ZERO(instr->starttime)) {
elog(DEBUG2, "InstrEndLoop called on running node");
}