summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorunknown <bar@mysql.com>2005-06-03 09:37:53 +0500
committerunknown <bar@mysql.com>2005-06-03 09:37:53 +0500
commit52b70ceff707657a91787a6b67ce79ca015dcabf (patch)
treef6cc44287a1964a875e43aca94b110861ff77867 /mysql-test/r
parent336d32b19ce9ad51c2c538b2ce161a7816eacccb (diff)
downloadmariadb-git-52b70ceff707657a91787a6b67ce79ca015dcabf.tar.gz
ctype_utf8.result, ctype_utf8.test:
adding test field.cc: bug#10714 Inserting double value into utf8 column crashes server: sprintf was executed with too big length, which caused crash on some Windows platforms. sql/field.cc: bug#10714 Inserting double value into utf8 column crashes server sprintf was executed with too long length, which cau crashe on Windows. mysql-test/t/ctype_utf8.test: adding test mysql-test/r/ctype_utf8.result: adding test
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/ctype_utf8.result3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/ctype_utf8.result b/mysql-test/r/ctype_utf8.result
index ffdb7cb0f3d..b7aa7c68b67 100644
--- a/mysql-test/r/ctype_utf8.result
+++ b/mysql-test/r/ctype_utf8.result
@@ -888,3 +888,6 @@ NULL
select ifnull(NULL, _utf8'string');
ifnull(NULL, _utf8'string')
string
+create table t1 (a varchar(255)) default character set utf8;
+insert into t1 values (1.0);
+drop table t1;