summaryrefslogtreecommitdiff
path: root/mysql-test/r/sp-prelocking.result
diff options
context:
space:
mode:
authorunknown <sergefp@mysql.com>2005-08-03 03:37:32 +0000
committerunknown <sergefp@mysql.com>2005-08-03 03:37:32 +0000
commitb323667ffc7176482073ca7d626560dcd8d7ee75 (patch)
treeab04bd1a5e1f34ad54866fd6df3fab3dfb0ae2e2 /mysql-test/r/sp-prelocking.result
parent11abe15eab3f444b600200e965cf18539af55392 (diff)
downloadmariadb-git-b323667ffc7176482073ca7d626560dcd8d7ee75.tar.gz
Prelocking-free SPs, post-review fixes:
* Don't activate prelocking mode for evaluating procedure arguments when it is not necessary. * Code structure simplification and cleanup. * Cleanup in .test files mysql-test/r/sp-prelocking.result: Prelocking-free SPs, post-review fixes: Added comment, s/testdb/mysqltest/, fixed a wrong test (error wasnt reported because of known bug in mysqltestrun) mysql-test/r/sp-security.result: Don't drop the table we're not using. mysql-test/r/sp.result: Prelocking-free SPs, post-review fixes: remove redundant "drop table if exists t3" statements mysql-test/t/sp-prelocking.test: Prelocking-free SPs, post-review fixes: Added comment, s/testdb/mysqltest/, fixed a wrong test (error wasnt reported because of known bug in mysqltestrun) mysql-test/t/sp-security.test: Don't drop the table we're not using. mysql-test/t/sp.test: Prelocking-free SPs, post-review fixes: remove redundant "drop table if exists t3" statements sql/sp.cc: New, better defined, sp_get_prelocking_info() function to get info about statement prelocking options sql/sp.h: Prelocking-free SPs, post-review fixes: New, better defined, sp_get_prelocking_info() function to get info about statement prelocking options sql/sp_cache.h: Prelocking-free SPs, post-review fixes: Amended the comments sql/sp_head.cc: Prelocking-free SPs, post-review fixes: Amend the comments, simplify the code that attaches removes statement's prelocking tables. sql/sql_base.cc: Prelocking-free SPs, post-review fixes: * Use a better defined sp_get_prelocking_info() function to get info about statement prelocking options * Don't activate prelocked mode for evaluation of SP arguments that use tables but don't need prelocking. sql/sql_class.cc: Prelocking-free SPs, post-review fixes: Initialize THD members in the order they are declared.
Diffstat (limited to 'mysql-test/r/sp-prelocking.result')
-rw-r--r--mysql-test/r/sp-prelocking.result26
1 files changed, 11 insertions, 15 deletions
diff --git a/mysql-test/r/sp-prelocking.result b/mysql-test/r/sp-prelocking.result
index da5c95cc2dd..32d6d4e6264 100644
--- a/mysql-test/r/sp-prelocking.result
+++ b/mysql-test/r/sp-prelocking.result
@@ -1,4 +1,4 @@
-drop database if exists testdb;
+drop database if exists mysqltest;
drop table if exists t1, t2, t3, t4;
drop procedure if exists sp1;
drop procedure if exists sp2;
@@ -7,8 +7,8 @@ drop procedure if exists sp4;
drop function if exists f1;
drop function if exists f2;
drop function if exists f3;
-create database testdb;
-use testdb//
+create database mysqltest;
+use mysqltest//
create procedure sp1 ()
begin
drop table if exists t1;
@@ -17,7 +17,7 @@ end;
//
select database();
database()
-testdb
+mysqltest
call sp1();
my-col
1
@@ -25,12 +25,12 @@ Warnings:
Note 1051 Unknown table 't1'
select database();
database()
-testdb
+mysqltest
use test;
select database();
database()
test
-call testdb.sp1();
+call mysqltest.sp1();
my-col
1
Warnings:
@@ -38,8 +38,8 @@ Note 1051 Unknown table 't1'
select database();
database()
test
-drop procedure testdb.sp1;
-drop database testdb;
+drop procedure mysqltest.sp1;
+drop database mysqltest;
create procedure sp1()
begin
create table t1 (a int);
@@ -95,13 +95,15 @@ create temporary table t1 (a int);
insert into t1 values(1);
call sp1();
select 't1', a from t1;
-select 't2', b from t2;
+select 't2', a from t2;
drop table t1;
drop table t2;
end//
call sp2();
t1 a
t1 1
+t2 a
+t2 1
drop procedure sp1;
drop procedure sp2;
create table t1 (a int);
@@ -138,21 +140,15 @@ end //
call sp4();
a
1
-1
-1
2
a
1
-1
2
a
1
-1
2
a
5
-drop temporary table t1;
-drop temporary table t2;
drop procedure sp1;
drop procedure sp2;
drop procedure sp3;