mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
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)
This commit is contained in:
parent
bb806c1e98
commit
9bb8f6d031
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue