mirror of
https://github.com/MariaDB/server.git
synced 2025-02-13 08:55:35 +01:00
![Vladislav Vaintroub](/assets/img/avatar_default.png)
On QA request, adding test that causes new code to be called. Even if we cannot validate the result, this will at least increase the code coverage.
10 lines
160 B
Text
10 lines
160 B
Text
SET profiling = 1;
|
|
SELECT 1;
|
|
1
|
|
1
|
|
SHOW PROFILES;
|
|
Query_ID Duration Query
|
|
1 # SELECT 1
|
|
SHOW PROFILE FOR QUERY 1;
|
|
SHOW PROFILE CPU FOR QUERY 1;
|
|
SET profiling = 0;
|