diff options
author | Vladislav Vaintroub <vvaintroub@mysql.com> | 2010-02-05 17:31:34 +0100 |
---|---|---|
committer | Vladislav Vaintroub <vvaintroub@mysql.com> | 2010-02-05 17:31:34 +0100 |
commit | a129a22873ded2ea52b454ff321c33d80f94fb97 (patch) | |
tree | 6a99e28a95574daae8a2553366c74eb4054a8b33 /mysql-test/r/show_profile.result | |
parent | e6cba2be35506bce8b0655f6081ef3508464bbf9 (diff) | |
download | mariadb-git-a129a22873ded2ea52b454ff321c33d80f94fb97.tar.gz |
Bug#50057: SHOW PROFILE CPU for Windows
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.
Diffstat (limited to 'mysql-test/r/show_profile.result')
-rw-r--r-- | mysql-test/r/show_profile.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/show_profile.result b/mysql-test/r/show_profile.result new file mode 100644 index 00000000000..67a07f6cfc9 --- /dev/null +++ b/mysql-test/r/show_profile.result @@ -0,0 +1,10 @@ +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; |