summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <pem@mysql.com>2003-04-03 20:19:18 +0200
committerunknown <pem@mysql.com>2003-04-03 20:19:18 +0200
commit80fece3ee1d355df512379c20120930e1e62d049 (patch)
treef8c89f2fee59a5958ddf56bf32d5fe92162395c6
parentad43aa818bb160c2ef45ee1b5e13e41e89e32387 (diff)
downloadmariadb-git-80fece3ee1d355df512379c20120930e1e62d049.tar.gz
And got rid of signess warnings...
-rw-r--r--sql/item_sum.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/item_sum.cc b/sql/item_sum.cc
index 783a38b0ebe..653f71e3d79 100644
--- a/sql/item_sum.cc
+++ b/sql/item_sum.cc
@@ -1631,7 +1631,7 @@ void Item_func_group_concat::reset_field()
bool
Item_func_group_concat::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
{
- uint i; /* for loop variable */
+ int i; /* for loop variable */
if (!thd->allow_sum_func)
{
@@ -1641,11 +1641,11 @@ Item_func_group_concat::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
thd->allow_sum_func= 0;
maybe_null= 0;
- for (i= 0 ; i < arg_count ; i++)
+ for (uint ui= 0 ; ui < arg_count ; ui++)
{
- if (args[i]->fix_fields(thd, tables, args + i) || args[i]->check_cols(1))
+ if (args[ui]->fix_fields(thd, tables, args + ui) || args[ui]->check_cols(1))
return 1;
- maybe_null |= args[i]->maybe_null;
+ maybe_null |= args[ui]->maybe_null;
}
for (i= 0 ; i < arg_count_field ; i++)
{