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

Added order by

This commit is contained in:
unknown
2006-06-12 15:36:12 +02:00
parent 7e3fe0fc91
commit 3f19b05bb0
2 changed files with 6 additions and 6 deletions

View File

@ -78,10 +78,10 @@ ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback; rollback;
commit; commit;
begin; begin;
select * from t1 where y = 'one' or y = 'three' for update; select * from t1 where y = 'one' or y = 'three' order by x for update;
x y z x y z
3 three 3
1 one 1 1 one 1
3 three 3
begin; begin;
select * from t1 where x = 1 for update; select * from t1 where x = 1 for update;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction ERROR HY000: Lock wait timeout exceeded; try restarting transaction
@ -115,10 +115,10 @@ ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback; rollback;
commit; commit;
begin; begin;
select * from t1 where y = 'one' or y = 'three' lock in share mode; select * from t1 where y = 'one' or y = 'three' order by x lock in share mode;
x y z x y z
3 three 3
1 one 1 1 one 1
3 three 3
begin; begin;
select * from t1 where y = 'one' lock in share mode; select * from t1 where y = 'one' lock in share mode;
x y z x y z

View File

@ -93,7 +93,7 @@ commit;
# table scan # table scan
connection con1; connection con1;
begin; begin;
select * from t1 where y = 'one' or y = 'three' for update; select * from t1 where y = 'one' or y = 'three' order by x for update;
connection con2; connection con2;
begin; begin;
@ -146,7 +146,7 @@ commit;
# table scan # table scan
connection con1; connection con1;
begin; begin;
select * from t1 where y = 'one' or y = 'three' lock in share mode; select * from t1 where y = 'one' or y = 'three' order by x lock in share mode;
connection con2; connection con2;
begin; begin;