Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
ae70201a
Commit
ae70201a
authored
Jun 12, 2006
by
mskold@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added order by
parent
40e6161f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
mysql-test/r/ndb_lock.result
mysql-test/r/ndb_lock.result
+4
-4
mysql-test/t/ndb_lock.test
mysql-test/t/ndb_lock.test
+2
-2
No files found.
mysql-test/r/ndb_lock.result
View file @
ae70201a
...
...
@@ -78,10 +78,10 @@ ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback;
commit;
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
3 three 3
1 one 1
3 three 3
begin;
select * from t1 where x = 1 for update;
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
...
...
@@ -115,10 +115,10 @@ ERROR HY000: Lock wait timeout exceeded; try restarting transaction
rollback;
commit;
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
3 three 3
1 one 1
3 three 3
begin;
select * from t1 where y = 'one' lock in share mode;
x y z
...
...
mysql-test/t/ndb_lock.test
View file @
ae70201a
...
...
@@ -93,7 +93,7 @@ commit;
# table scan
connection
con1
;
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
;
begin
;
...
...
@@ -146,7 +146,7 @@ commit;
# table scan
connection
con1
;
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
;
begin
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment