1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

More updates for using NDB as default and some bug fixes along the way

This commit is contained in:
jmiller@mysql.com
2006-02-08 13:08:19 +01:00
parent e5a7238aed
commit 75b6720509
17 changed files with 95 additions and 66 deletions

View File

@@ -8,7 +8,7 @@ create table t1 (n int not null primary key);
insert into t1 values (1);
insert into t1 values (1);
insert into t1 values (2),(3);
select * from t1;
select * from t1 ORDER BY n;
n
1
2