diff options
author | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2008-12-09 15:16:39 +0400 |
---|---|---|
committer | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2008-12-09 15:16:39 +0400 |
commit | 82aedffa036f79d00f5d76b9ec110a21bf485575 (patch) | |
tree | f3d6505d1d67fc4f79a68928e63b7fa06f3a31fc /mysql-test/t/func_str.test | |
parent | 0d2db9c02023c5867e92c31c53da9c5431042387 (diff) | |
parent | 681a2d1a53999f70e5437f62d8478caade48f3b3 (diff) | |
download | mariadb-git-82aedffa036f79d00f5d76b9ec110a21bf485575.tar.gz |
5.0-bugteam->5.1-bugteam merge
mysql-test/r/myisam_data_pointer_size_func.result:
restore default value
mysql-test/r/partition_datatype.result:
test case fix
mysql-test/t/myisam_data_pointer_size_func.test:
restore default value
Diffstat (limited to 'mysql-test/t/func_str.test')
-rw-r--r-- | mysql-test/t/func_str.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/t/func_str.test b/mysql-test/t/func_str.test index 5a5f4024bc4..5d77c678d52 100644 --- a/mysql-test/t/func_str.test +++ b/mysql-test/t/func_str.test @@ -1263,4 +1263,14 @@ CREATE VIEW v1 AS SELECT CHAR(0x414243) as c1; SELECT HEX(c1) from v1; DROP VIEW v1; +# +# Bug #35558 Wrong server metadata blows up the client +# +create table t1(a float); +insert into t1 values (1.33); +--enable_metadata +select format(a, 2) from t1; +--disable_metadata +drop table t1; + --echo End of 5.0 tests |