diff options
author | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2010-06-09 11:41:24 +0300 |
---|---|---|
committer | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2010-06-09 11:41:24 +0300 |
commit | 344127f371de209bf8a0cb1a0cb9748378ea9bb6 (patch) | |
tree | 2b69f5dc4ed6a2fca5bff6279464516aad56386b /mysql-test/r/loaddata.result | |
parent | 60153dd36e2a79150565635d1370ed64df7cc07d (diff) | |
parent | 04f4786c081d4aa09ae91692bc494c8fd3cc3430 (diff) | |
download | mariadb-git-344127f371de209bf8a0cb1a0cb9748378ea9bb6.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 7a79603adb3..a7407cfa699 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 |