diff options
author | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2010-06-09 11:29:27 +0300 |
---|---|---|
committer | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2010-06-09 11:29:27 +0300 |
commit | 5932330839daa3c211b7db81d0ce1b50b8b928f8 (patch) | |
tree | 19f359486b756ba2484cb3d73d7ab22800675688 /mysql-test/t/loaddata.test | |
parent | 1de997d849e718a7080cf5eab6f8715beada8abf (diff) | |
parent | 257363e6c41d71c0ba3ce870614dfed1ff47676f (diff) | |
download | mariadb-git-5932330839daa3c211b7db81d0ce1b50b8b928f8.tar.gz |
Merge
Diffstat (limited to 'mysql-test/t/loaddata.test')
-rw-r--r-- | mysql-test/t/loaddata.test | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mysql-test/t/loaddata.test b/mysql-test/t/loaddata.test index 126bd5c8838..e24f0b16705 100644 --- a/mysql-test/t/loaddata.test +++ b/mysql-test/t/loaddata.test @@ -560,4 +560,24 @@ let $MYSQLD_DATADIR= `select @@datadir`; remove_file $MYSQLD_DATADIR/test/t1.txt; +--echo # +--echo # Bug #52512 : Assertion `! is_set()' in +--echo # Diagnostics_area::set_ok_status on LOAD DATA +--echo # + +connect (con1,localhost,root,,test); + +CREATE TABLE t1 (id INT NOT NULL); +--send LOAD DATA LOCAL INFILE 'tb.txt' INTO TABLE t1 +# please keep this is a spearate test file : it's important to have no +# commands after this one + +connection default; +dirty_close con1; + +connect (con1,localhost,root,,test); +DROP TABLE t1; +connection default; +disconnect con1; + --echo End of 5.1 tests |