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:
@ -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
|
||||
|
Reference in New Issue
Block a user