diff options
author | unknown <sergefp@mysql.com> | 2005-01-02 14:15:51 +0300 |
---|---|---|
committer | unknown <sergefp@mysql.com> | 2005-01-02 14:15:51 +0300 |
commit | e1455e4ddda0d2706745172f89f993414bef5a66 (patch) | |
tree | 351ab06d6170069bc5f1a90fe087214d5c46879e /mysql-test/t/func_concat.test | |
parent | 3a4372d310c9f5c661c0990040403f6050fed211 (diff) | |
download | mariadb-git-e1455e4ddda0d2706745172f89f993414bef5a66.tar.gz |
Fix the tests: allow result of concat('a', -0.0) be both 'a0.0' and 'a-0.0'
(this depends on s[n]printf implementation and differs from system to system)
mysql-test/t/func_concat.test:
Allow result of concat('a', -0.0) be both 'a0.0' and 'a-0.0'
Diffstat (limited to 'mysql-test/t/func_concat.test')
-rw-r--r-- | mysql-test/t/func_concat.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/func_concat.test b/mysql-test/t/func_concat.test index 78818cdda4e..4f13ce7513c 100644 --- a/mysql-test/t/func_concat.test +++ b/mysql-test/t/func_concat.test @@ -46,7 +46,9 @@ select 'a' union select concat('a', -'3'); select 'a' union select concat('a', -concat('3',4)); select 'a' union select concat('a', -0); +--replace_result a-0.0 a0.0 select 'a' union select concat('a', -0.0); +--replace_result a-0.0000 a0.0000 select 'a' union select concat('a', -0.0000); |