diff options
author | Alexey Kopytov <Alexey.Kopytov@Sun.com> | 2010-04-02 18:22:18 +0400 |
---|---|---|
committer | Alexey Kopytov <Alexey.Kopytov@Sun.com> | 2010-04-02 18:22:18 +0400 |
commit | 3fc2a82ad09542d180502e95c115ea9aa8075089 (patch) | |
tree | 76d303b78b180500645629d87131ff367c134fe4 /mysql-test/r/loaddata.result | |
parent | d7dd2fc92f042596c2e72a96934bb207270e7419 (diff) | |
parent | fe25ec8f2425cfd0e59d9a20f0094d6fc6e0cd3a (diff) | |
download | mariadb-git-3fc2a82ad09542d180502e95c115ea9aa8075089.tar.gz |
Automerge.
Diffstat (limited to 'mysql-test/r/loaddata.result')
-rw-r--r-- | mysql-test/r/loaddata.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/loaddata.result b/mysql-test/r/loaddata.result index 5e25132880f..93782d624ed 100644 --- a/mysql-test/r/loaddata.result +++ b/mysql-test/r/loaddata.result @@ -484,4 +484,15 @@ SET character_set_filesystem=default; select @@character_set_filesystem; @@character_set_filesystem binary +# +# Bug #51850: crash/memory overlap when using load data infile and set +# col equal to itself! +# +CREATE TABLE t1(col0 LONGBLOB); +SELECT 'test' INTO OUTFILE 't1.txt'; +LOAD DATA INFILE 't1.txt' IGNORE INTO TABLE t1 SET col0=col0; +SELECT * FROM t1; +col0 +test +DROP TABLE t1; End of 5.1 tests |