Skip to content

Commit

Permalink
[BugFix] fix error message of kill (#49518)
Browse files Browse the repository at this point in the history
Signed-off-by: Murphy <[email protected]>
  • Loading branch information
murphyatwork authored Aug 7, 2024
1 parent e7d9dc0 commit 7b5ac67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1035,7 +1035,7 @@ private void handleKill(ConnectContext killCtx, boolean killConnection) {
PrivilegeType.OPERATE.name(), ObjectType.SYSTEM.name(), null);
}
}
killCtx.kill(killConnection, "killed by kill statement : " + originStmt);
killCtx.kill(killConnection, "killed manually: " + originStmt.getOrigStmt());
}
context.getState().setOk();
}
Expand Down

0 comments on commit 7b5ac67

Please sign in to comment.