select * from libra_system.slow_log;
Field Name | Type | Nullable | Description |
start_time | text | NO | The time when the SQL execution started. |
tso | bigint(20) unsigned | NO | The unique identifier of the SQL statement. |
sql | text | NO | The SQL text information. |
duration | bigint(20) unsigned | NO | The execution time of the SQL statement. |
details | text | NO | Detailed information about the SQL execution. |
conn_id | bigint(20) unsigned | NO | The session ID of the client connection. |
user | text | NO | The username used for execution. |
db | text | NO | The 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