From cbd7cca94cee91a01883cd05c1da2a85023d5a07 Mon Sep 17 00:00:00 2001 From: ekexium Date: Wed, 21 Feb 2024 15:48:27 +0800 Subject: [PATCH] fix: transactin_ts in slow query is start_ts, not commit_ts (#16513) --- 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 62923d1158b53..8e917d127e890 100644 --- a/identify-slow-queries.md +++ b/identify-slow-queries.md @@ -614,7 +614,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 |