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 | 04f4786c081d4aa09ae91692bc494c8fd3cc3430 (patch) | |
tree | 19f359486b756ba2484cb3d73d7ab22800675688 /mysql-test/r/loaddata.result | |
parent | 75a18e24fa72cca07254cbabd119b944c0ef989d (diff) | |
parent | 287fa3caf532509d01d92e8d32f2149603914137 (diff) | |
download | mariadb-git-04f4786c081d4aa09ae91692bc494c8fd3cc3430.tar.gz |
Merge
Diffstat (limited to 'mysql-test/r/loaddata.result')
-rw-r--r-- | mysql-test/r/loaddata.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/loaddata.result b/mysql-test/r/loaddata.result index b3487d376a1..665e80b8ba2 100644 --- a/mysql-test/r/loaddata.result +++ b/mysql-test/r/loaddata.result @@ -496,4 +496,11 @@ SELECT * FROM t1; col0 test DROP TABLE t1; +# +# Bug #52512 : Assertion `! is_set()' in +# Diagnostics_area::set_ok_status on LOAD DATA +# +CREATE TABLE t1 (id INT NOT NULL); +LOAD DATA LOCAL INFILE 'tb.txt' INTO TABLE t1; +DROP TABLE t1; End of 5.1 tests |