diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2012-06-30 06:05:06 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2012-06-30 06:05:06 +0400 |
commit | 00ff7345fa10fc0de924b7c2acd3ea9ea4cf50aa (patch) | |
tree | f32a0a34d3b95b657695fe7b178d62e996612640 /mysql-test/r/show_explain.result | |
parent | b9093d370bc8185ed067b41a6d5765a26ef21f89 (diff) | |
download | mariadb-git-00ff7345fa10fc0de924b7c2acd3ea9ea4cf50aa.tar.gz |
- More "local" code in show_explain.test
- Better comments
- Make unittest compile on Windows
Diffstat (limited to 'mysql-test/r/show_explain.result')
-rw-r--r-- | mysql-test/r/show_explain.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/show_explain.result b/mysql-test/r/show_explain.result index a4097b9d65e..7c22a2c6435 100644 --- a/mysql-test/r/show_explain.result +++ b/mysql-test/r/show_explain.result @@ -735,6 +735,7 @@ grant ALL on test.* to test2@localhost; # # First, make sure that user 'test2' cannot do SHOW EXPLAIN on us # +set @show_explain_probe_select_id=1; set debug_dbug='d,show_explain_probe_join_exec_start'; select * from t0 where a < 3; show explain for $thr2; @@ -759,6 +760,7 @@ set debug_dbug=''; # Now, grant test2 a PROCESSLIST permission, and see that he's able to observe us # grant process on *.* to test2@localhost; +set @show_explain_probe_select_id=1; set debug_dbug='d,show_explain_probe_join_exec_start'; select * from t0 where a < 3; show explain for $thr2; |