diff options
author | unknown <monty@narttu.mysql.fi> | 2003-03-04 12:32:28 +0200 |
---|---|---|
committer | unknown <monty@narttu.mysql.fi> | 2003-03-04 12:32:28 +0200 |
commit | 7a88d2ccbdf872e200784a7bdfe497c64d0e4449 (patch) | |
tree | 060e05f45d2f301e50dc115b01bde9103d6c51d7 /mysql-test/r/lock_multi.result | |
parent | aeee04d278ca5aacb081df69e8bbdeaf26027f45 (diff) | |
parent | 3446199d8e421da02a5546f439ee76b368594700 (diff) | |
download | mariadb-git-7a88d2ccbdf872e200784a7bdfe497c64d0e4449.tar.gz |
Merge work:/my/mysql-4.0 into narttu.mysql.fi:/my/mysql-4.0
client/mysqltest.c:
Auto merged
mysql-test/mysql-test-run.sh:
Auto merged
sql/handler.cc:
Auto merged
Diffstat (limited to 'mysql-test/r/lock_multi.result')
-rw-r--r-- | mysql-test/r/lock_multi.result | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mysql-test/r/lock_multi.result b/mysql-test/r/lock_multi.result index 20bc9b9572f..b808fca0acf 100644 --- a/mysql-test/r/lock_multi.result +++ b/mysql-test/r/lock_multi.result @@ -1,4 +1,4 @@ -drop table if exists t1; +drop table if exists t1,t2; create table t1(n int); insert into t1 values (1); lock tables t1 write; @@ -17,3 +17,10 @@ unlock tables; n 1 drop table t1; +create table t1 (a int); +create table t2 (a int); +lock table t1 write, t2 write; + insert t1 select * from t2; +drop table t2; +Table 'test.t2' doesn't exist +drop table t1; |