From 9b0fad8cb22418981b28d90a9da735670251da14 Mon Sep 17 00:00:00 2001 From: crazycs Date: Sat, 21 Sep 2019 23:00:41 +0800 Subject: [PATCH] Update expression/builtin_info.go Co-Authored-By: Zhang Jian --- expression/builtin_info.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expression/builtin_info.go b/expression/builtin_info.go index e001bb549611c..d2abb9655adaa 100644 --- a/expression/builtin_info.go +++ b/expression/builtin_info.go @@ -640,7 +640,7 @@ func decodeKey(ctx sessionctx.Context, s string) string { if err == nil { key = bs } - // Try decode as table record key. + // Try to decode it as a record key. tableID, handle, err := tablecodec.DecodeRecordKey(key) if err == nil { return "tableID=" + strconv.FormatInt(tableID, 10) + ", handle=" + strconv.FormatInt(handle, 10)