diff options
author | bell@sanja.is.com.ua <> | 2004-11-05 17:29:47 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-11-05 17:29:47 +0200 |
commit | 064b02203fef63495b74e78f01bce5f53ccd0830 (patch) | |
tree | 7c3c0f2fa9d3f0ef56c352118e5174450230fec2 /mysql-test/r/lock_multi.result | |
parent | b2dd380beb303592d3504824cfdd69fa724aee0e (diff) | |
download | mariadb-git-064b02203fef63495b74e78f01bce5f53ccd0830.tar.gz |
new lock for multiupdate:
- open and create derived tables
- detect which tables should be locked for write
- lock and fill derived tables
some unitialized variables fixed
Diffstat (limited to 'mysql-test/r/lock_multi.result')
-rw-r--r-- | mysql-test/r/lock_multi.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/lock_multi.result b/mysql-test/r/lock_multi.result index 4eb4ff6cdc2..9eedbf50064 100644 --- a/mysql-test/r/lock_multi.result +++ b/mysql-test/r/lock_multi.result @@ -26,7 +26,7 @@ lock table t1 read; update t1,t2 set c=a where b=d; select c from t2; c -1 +2 drop table t1; drop table t2; create table t1 (a int); |