Skip to content

Commit

Permalink
[BugFix] fix error message of kill (backport #49518) (#49538)
Browse files Browse the repository at this point in the history
Co-authored-by: Murphy <[email protected]>
  • Loading branch information
mergify[bot] and murphyatwork authored Aug 8, 2024
1 parent 76ddbab commit b1566d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ private void handleKill() throws DdlException {
PrivilegeType.OPERATE.name(), ObjectType.SYSTEM.name(), null);
}
}
killCtx.kill(killStmt.isConnectionKill(), "killed by kill statement : " + originStmt);
killCtx.kill(killStmt.isConnectionKill(), "killed manually: " + originStmt.originStmt);
}
context.getState().setOk();
}
Expand Down

0 comments on commit b1566d0

Please sign in to comment.