mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Bug#25197 repeat function returns null when using table field directly as count
- Add extra test case from bug#27073 - Change "if" to be optimized for count > 0
This commit is contained in:
@@ -1028,6 +1028,10 @@ INSERT INTO `t1` (`id`, `tire`) VALUES ('A', 0), ('B', 1),('C', 2);
|
||||
SELECT REPEAT( '#', tire ) AS A,
|
||||
REPEAT( '#', tire % 999 ) AS B, tire FROM `t1`;
|
||||
|
||||
SELECT REPEAT('0', CAST(0 AS UNSIGNED));
|
||||
SELECT REPEAT('0', -2);
|
||||
SELECT REPEAT('0', 2);
|
||||
|
||||
DROP TABLE t1;
|
||||
|
||||
--echo End of 5.0 tests
|
||||
|
||||
Reference in New Issue
Block a user