summaryrefslogtreecommitdiff
path: root/sql/item_strfunc.cc
diff options
context:
space:
mode:
authorunknown <msvensson@pilot.blaudden>2007-02-28 11:21:29 +0100
committerunknown <msvensson@pilot.blaudden>2007-02-28 11:21:29 +0100
commit65fc58524f6f641efef1b4a214d281c05df34029 (patch)
tree578df53baa7099711273607aa42e47f44de15143 /sql/item_strfunc.cc
parent37b0e2b6df9c49bc6d7703c61c8b8c5be3e531a7 (diff)
parentd79f0973ce03e3bc25a2e2fa130cf129936d4bcd (diff)
downloadmariadb-git-65fc58524f6f641efef1b4a214d281c05df34029.tar.gz
Merge pilot.blaudden:/home/msvensson/mysql/bug25197/my50-bug25197
into pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint sql/item_strfunc.cc: Auto merged
Diffstat (limited to 'sql/item_strfunc.cc')
-rw-r--r--sql/item_strfunc.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/item_strfunc.cc b/sql/item_strfunc.cc
index b402e733a44..6c28cb3f42b 100644
--- a/sql/item_strfunc.cc
+++ b/sql/item_strfunc.cc
@@ -2251,8 +2251,10 @@ String *Item_func_repeat::val_str(String *str)
if (args[0]->null_value || args[1]->null_value)
goto err; // string and/or delim are null
null_value= 0;
- if ((count <= 0) && !args[1]->unsigned_flag) // For nicer SQL code
+
+ if (count == 0 || count < 0 && !args[1]->unsigned_flag)
return &my_empty_string;
+
/* Assumes that the maximum length of a String is < INT_MAX32. */
/* Bounds check on count: If this is triggered, we will error. */
if ((ulonglong) count > INT_MAX32)