diff options
author | Akhila Maddukuri <akhila.x.maddukuri@oracle.com> | 2012-09-26 17:04:19 +0530 |
---|---|---|
committer | Akhila Maddukuri <akhila.x.maddukuri@oracle.com> | 2012-09-26 17:04:19 +0530 |
commit | a246d1544d305ace40a22786dc4ef72f184af69f (patch) | |
tree | 762e071f5b28bf4c38ecc8f346fabde77e97f672 /mysql-test/r/loaddata.result | |
parent | 0aa08e6bacfd31456fe4dfa461d40c229c12163d (diff) | |
parent | 39739a423fdb7b287ad7064425882393945b36a1 (diff) | |
download | mariadb-git-a246d1544d305ace40a22786dc4ef72f184af69f.tar.gz |
Description:
-----------
After compiling from source, during make test I got the following error:
test main.loaddata failed with error
CURRENT_TEST: main.loaddata
mysqltest: At line 592: query 'LOAD DATA INFILE 'tmpp.txt' INTO TABLE t1
CHARACTER SET ucs2
(@b) SET a=REVERSE(@b)' failed: 1115: Unknown character set: 'ucs2'
I noticed other tests are skipped because of no ucs2
main.mix2_myisam_ucs2 [ skipped ] Test requires:'
have_ucs2'
Should main.loaddata be skipped if there is no ucs2
How To Repeat:
-------------
Run make test on compiled source that doesn't have ucs2
Suggested fix:
-------------
the failing piece of the test should be moved from mysql-test/t/loaddata.test to
mysql-test/t/ctype_ucs.test.
Diffstat (limited to 'mysql-test/r/loaddata.result')
-rw-r--r-- | mysql-test/r/loaddata.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/loaddata.result b/mysql-test/r/loaddata.result index c4c8216c14a..fc33e6c0b5f 100644 --- a/mysql-test/r/loaddata.result +++ b/mysql-test/r/loaddata.result @@ -533,6 +533,8 @@ a 1 DROP TABLE t1; # + + # Bug#11765139 58069: LOAD DATA INFILE: VALGRIND REPORTS INVALID MEMORY READS AND WRITES WITH U # CREATE TABLE t1(f1 INT); |