1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Merge 5.1 main -> 5.1-rpl

This commit is contained in:
He Zhenxing
2008-09-06 08:51:17 +08:00
236 changed files with 143560 additions and 6402 deletions

View File

@@ -1386,6 +1386,9 @@ UNLOCK TABLES;
# cleanup
DROP TABLE test_concurrent_insert;
connection default;
--disconnect con1
--disconnect con2
#
# Test REPAIR/CHECK TABLE (5.1)
@@ -1785,4 +1788,21 @@ update t1 set c1="That" where c1="This";
select * from t1;
drop table t1;
#
# Bug#36638 mysqld crashes when open file limit is passed and general query log enabled
#
create table t1 (a int not null) engine=csv;
lock tables t1 read;
connect (con1,localhost,root,,);
--connection con1
--remove_file $MYSQLD_DATADIR/test/t1.CSV
--replace_result $MYSQLD_DATADIR '' 13 2
# EE_FILENOTFOUND 29
--error 29
select * from t1;
connection default;
unlock tables;
drop table t1;
--disconnect con1
--echo End of 5.1 tests