diff options
author | unknown <monty@mashka.mysql.fi> | 2002-11-20 22:56:57 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2002-11-20 22:56:57 +0200 |
commit | 9b9546edbc095e061167588f672549103627bf98 (patch) | |
tree | 1deb846a75b9e1e5c1491e20df66b4d74fc6fa0b /mysql-test/r/bdb.result | |
parent | 33d678fcdc2d0b431c0f08e11e0b6715cd37cda0 (diff) | |
download | mariadb-git-9b9546edbc095e061167588f672549103627bf98.tar.gz |
Try to optimize the cache buffer size needed for bulk_insert
Fix for shutdown on Mac OS X
include/my_tree.h:
Try to optimize the cache buffer size needed for bulk_insert
myisam/mi_write.c:
Try to optimize the cache buffer size needed for bulk_insert
mysql-test/r/bdb.result:
Make test repeatable
mysql-test/t/bdb.test:
Make test repeatable
mysys/tree.c:
Try to optimize the cache buffer size needed for bulk_insert
sql/mysql_priv.h:
Small optimization
sql/mysqld.cc:
Fix for shutdown on Mac OS X
sql/sql_insert.cc:
Try to optimize the cache buffer size needed for bulk_insert
sql/sql_yacc.yy:
Call thd->strmake() instead of sql_strmake()
sql/table.cc:
Try to optimize the cache buffer size needed for bulk_insert
sql/table.h:
Try to optimize the cache buffer size needed for bulk_insert
Diffstat (limited to 'mysql-test/r/bdb.result')
-rw-r--r-- | mysql-test/r/bdb.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/bdb.result b/mysql-test/r/bdb.result index a815f2f8fab..eb97d19136d 100644 --- a/mysql-test/r/bdb.result +++ b/mysql-test/r/bdb.result @@ -133,11 +133,11 @@ id parent_id level 1202 107 2 1204 107 2 update ignore t1 set id=1023 where id=1010; -select * from t1 where parent_id=102; +select * from t1 where parent_id=102 order by parent_id,id; id parent_id level 1008 102 2 -1015 102 2 1010 102 2 +1015 102 2 explain select level from t1 where level=1; table type possible_keys key key_len ref rows Extra t1 ref level level 1 const 1 Using where; Using index |