1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

aliases with multi-table updates / deletes

fix for a bug with derived tables and query cache
ix for a charset bug in timestamp
This commit is contained in:
Sinisa@sinisa.nasamreza.org
2002-12-28 21:34:17 +02:00
parent 5a44f2bc26
commit 1e2bec8009
8 changed files with 12 additions and 4 deletions

View File

@ -235,7 +235,7 @@ select * from t2;
n d
1 30
1 30
UPDATE t1 a ,t2 b SET t1.d=t2.d,t2.d=30 WHERE a.n=b.n;
UPDATE t1 a ,t2 b SET a.d=b.d,b.d=30 WHERE a.n=b.n;
select * from t1;
n d
1 30