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

Merge Bug#56716 from 5.1

This commit is contained in:
Marko Mäkelä
2010-10-04 13:38:05 +03:00
committed by Vasil Dimov
parent f6e5cf3ef4
commit 24b1a89712
3 changed files with 50 additions and 36 deletions

View File

@ -0,0 +1,4 @@
CREATE TABLE bug56716 (a INT PRIMARY KEY,b INT,c INT,INDEX(b)) ENGINE=InnoDB;
SELECT * FROM bug56716 WHERE b<=42 ORDER BY b DESC FOR UPDATE;
a b c
DROP TABLE bug56716;