diff options
author | msvensson@pilot.blaudden <> | 2007-03-28 09:32:49 +0200 |
---|---|---|
committer | msvensson@pilot.blaudden <> | 2007-03-28 09:32:49 +0200 |
commit | 171e91f17d424bafd47568557ee522a3f5e5384f (patch) | |
tree | d94a2bebe02f7fd99e99d97d211839237ef76c7b /mysql-test/r/func_str.result | |
parent | ba3c96f507c0381531a43f6e5ee0500842f75025 (diff) | |
download | mariadb-git-171e91f17d424bafd47568557ee522a3f5e5384f.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
Diffstat (limited to 'mysql-test/r/func_str.result')
-rw-r--r-- | mysql-test/r/func_str.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/func_str.result b/mysql-test/r/func_str.result index e716a89132c..6abd3a61a4b 100644 --- a/mysql-test/r/func_str.result +++ b/mysql-test/r/func_str.result @@ -1953,5 +1953,14 @@ A B tire 0 # # 1 ## ## 2 +SELECT REPEAT('0', CAST(0 AS UNSIGNED)); +REPEAT('0', CAST(0 AS UNSIGNED)) + +SELECT REPEAT('0', -2); +REPEAT('0', -2) + +SELECT REPEAT('0', 2); +REPEAT('0', 2) +00 DROP TABLE t1; End of 5.0 tests |