diff options
author | unknown <msvensson@pilot.blaudden> | 2007-03-28 09:32:49 +0200 |
---|---|---|
committer | unknown <msvensson@pilot.blaudden> | 2007-03-28 09:32:49 +0200 |
commit | e9b606bf3e0ccc9d9ff27541371cc5faf72dd813 (patch) | |
tree | d94a2bebe02f7fd99e99d97d211839237ef76c7b /mysql-test/t/func_str.test | |
parent | d79f0973ce03e3bc25a2e2fa130cf129936d4bcd (diff) | |
download | mariadb-git-e9b606bf3e0ccc9d9ff27541371cc5faf72dd813.tar.gz |
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
mysql-test/r/func_str.result:
Add test case from bug#27073
mysql-test/t/func_str.test:
Add test case from bug#27073
sql/item_strfunc.cc:
Change the if statemnet to be optimized for the normal case where count > 0
Diffstat (limited to 'mysql-test/t/func_str.test')
-rw-r--r-- | mysql-test/t/func_str.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/t/func_str.test b/mysql-test/t/func_str.test index 7cf7ef2cab6..80e4b9fe40c 100644 --- a/mysql-test/t/func_str.test +++ b/mysql-test/t/func_str.test @@ -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 |