summaryrefslogtreecommitdiff
path: root/mysql-test/r/max_statement_time.result
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2015-08-18 01:00:28 +0300
committerMonty <monty@mariadb.org>2015-08-18 01:00:28 +0300
commit4d8a6253af5b4c699acf77f9ed13d233cdb9dd9a (patch)
tree254e8fc06589dc31927062ba1b2b41cd608a959e /mysql-test/r/max_statement_time.result
parent2eef4d3bea7ccd3d55e9ab3316f2a23f48cd6fc5 (diff)
downloadmariadb-git-bb-10.1-default.tar.gz
Fixed failing tests and compiler warningsbb-10.1-default
- UNINIT_VAR() was required for 4.8.3 on openSUSE 13.2 - repair_symlink changed because of some of my earlier fixes for REPAIR
Diffstat (limited to 'mysql-test/r/max_statement_time.result')
-rw-r--r--mysql-test/r/max_statement_time.result2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/max_statement_time.result b/mysql-test/r/max_statement_time.result
index c0cffb27a37..e445907255b 100644
--- a/mysql-test/r/max_statement_time.result
+++ b/mysql-test/r/max_statement_time.result
@@ -159,6 +159,7 @@ begin
select 1;
select sql_no_cache * from t1 where i > 5;
select sql_no_cache * from t1 where i > 5;
+select sleep(2);
end |
set max_statement_time = 0.001;
call pr();
@@ -170,6 +171,7 @@ create procedure pr()
begin
select sql_no_cache * from t1 where i > 5;
select sql_no_cache * from t1 where i > 5;
+select sleep(2);
end |
set max_statement_time = 0.001;
call pr();