select * from libra_system.slow_log;
Field Name | Type | Nullable | Description |
start_time | text | NO | Time when the SQL execution started. |
tso | bigint(20) unsigned | NO | Unique identifier of the SQL statement. |
sql | text | NO | SQL text information (the maximum length is 4 KB, and the exceeded part will be truncated). |
duration | bigint(20) unsigned | NO | SQL execution time (in ms). |
details | text | NO | Detailed information about the SQL execution. |
conn_id | bigint(20) unsigned | NO | Session ID of the client connection. |
user | text | NO | Username used for execution. |
db | text | NO | Database involved. |
digest | text | NO | Reserved column name (currently unused). |
succ | tinyint(3) unsigned | NO | Whether the SQL statement was executed successfully. |
host | text | NO | Information about the node that executed the SQL statement. |
Feedback