1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +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

@ -1,3 +1,6 @@
##########################################
# 2006-02-07 By JBM: Added order by
#########################################
source include/master-slave.inc;
create table t1 (n int not null primary key);
@ -11,6 +14,6 @@ insert into t1 values (2),(3);
save_master_pos;
connection slave;
sync_with_master;
select * from t1;
select * from t1 ORDER BY n;
# End of 4.1 tests