1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-03 05:41:09 +03:00

Added order by to make the test output from ndb_basic and ndb_lock predicatble

This commit is contained in:
magnus@neptunus.(none)
2004-07-28 10:28:30 +02:00
parent 674bbf0825
commit 10583f05c9
4 changed files with 17 additions and 17 deletions

View File

@@ -31,9 +31,9 @@ SELECT * FROM t1;
# Update primary key
UPDATE t1 SET pk1=2 WHERE attr1=1;
SELECT * FROM t1;
SELECT * FROM t1 ORDER BY pk1;
UPDATE t1 SET pk1=pk1 + 1;
SELECT * FROM t1;
SELECT * FROM t1 ORDER BY pk1;
# Delete the record
DELETE FROM t1;