From 98632332ec8202b0309963085f4c69a8f4e34aa3 Mon Sep 17 00:00:00 2001 From: ekexium Date: Sun, 18 Feb 2024 19:55:32 +0800 Subject: [PATCH] fix: transactin_ts in slow query is start_ts, not commit_ts Signed-off-by: ekexium --- identify-slow-queries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/identify-slow-queries.md b/identify-slow-queries.md index ba7e7fde12582..31c1c5d095b4a 100644 --- a/identify-slow-queries.md +++ b/identify-slow-queries.md @@ -606,7 +606,7 @@ The following table shows output details: | details | The details of the SQL execution | | succ | Whether the SQL statement is executed successfully. `1` means success and `0` means failure. | | conn_id | The connection ID for the session | -| transaction_ts | The `commit ts` for a transaction commit | +| transaction_ts | The `start ts` of the transaction | | user | The user name for the execution of the statement | | db | The database involved when the statement is executed | | table_ids | The ID of the table involved when the SQL statement is executed |