1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Added Innobase to source distribution

This commit is contained in:
monty@donna.mysql.com
2001-02-17 14:19:19 +02:00
parent 024e2f39c9
commit c533308a15
421 changed files with 170195 additions and 969 deletions

View File

@ -31,6 +31,7 @@ select * from t3 where a > 10 and a < 20;
explain select a from t3 order by a desc limit 10;
select a from t3 order by a desc limit 10;
select a from t3 order by a desc limit 300,10;
show create table t3;
# The following should give errors
create table t4 (a int not null, b char(10), key(a)) type=MERGE UNION=(t1,t2);