mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-7832 Add status variables to track CREATE TEMPORARY TABLE and DROP TEMPORARY TABLE
Pretend that CREATE TABLE and CREATE TEMPORARY TABLE are two different commands internally. The user doesn't need to know that they both are SQLCOM_CREATE_TABLE. Same for DROP [TEMPORARY] TABLE
This commit is contained in:
@ -675,6 +675,8 @@ typedef struct system_variables
|
||||
typedef struct system_status_var
|
||||
{
|
||||
ulong com_stat[(uint) SQLCOM_END];
|
||||
ulong com_create_tmp_table;
|
||||
ulong com_drop_tmp_table;
|
||||
ulong com_other;
|
||||
|
||||
ulong com_stmt_prepare;
|
||||
|
Reference in New Issue
Block a user