From e1455e4ddda0d2706745172f89f993414bef5a66 Mon Sep 17 00:00:00 2001
From: unknown <sergefp@mysql.com>
Date: Sun, 2 Jan 2005 14:15:51 +0300
Subject: [PATCH] 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'
---
 mysql-test/t/func_concat.test | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/mysql-test/t/func_concat.test b/mysql-test/t/func_concat.test
index 78818cdda4..4f13ce7513 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);
 
-- 
2.30.9