diff options
author | serg@serg.mylan <> | 2004-12-02 20:53:54 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2004-12-02 20:53:54 +0100 |
commit | 3ce82099945081793c5d92bca61c489372a38a12 (patch) | |
tree | acb9d6db0e4f7bb87c7369cb47974388b1574fe3 | |
parent | 7dd3d47753de87aa3b32cd3305e0753dec7c22a4 (diff) | |
download | mariadb-git-3ce82099945081793c5d92bca61c489372a38a12.tar.gz |
compatibility fix
-rw-r--r-- | sql/item_func.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_func.cc b/sql/item_func.cc index 32841ba447b..5ed543efbc7 100644 --- a/sql/item_func.cc +++ b/sql/item_func.cc @@ -171,7 +171,7 @@ bool Item_func::agg_arg_charsets(DTCollation &coll, for (arg= args, last= args + nargs; arg < last; arg++) { Item* conv; - uint dummy_offset; + uint32 dummy_offset; if (!String::needs_conversion(0, coll.collation, (*arg)->collation.collation, &dummy_offset)) |