diff options
author | unknown <jani@ua141d10.elisa.omakaista.fi> | 2004-11-12 20:47:41 +0200 |
---|---|---|
committer | unknown <jani@ua141d10.elisa.omakaista.fi> | 2004-11-12 20:47:41 +0200 |
commit | c77cb0a3210106772e59e78059461a4eb4d69e54 (patch) | |
tree | d27de8dff5c6c71562d1234f59996215867aabe6 /sql/item_strfunc.cc | |
parent | 75a4c71b67508c7b1390477a4a3a4a4aba120bbb (diff) | |
download | mariadb-git-c77cb0a3210106772e59e78059461a4eb4d69e54.tar.gz |
Fixed a function call.
Diffstat (limited to 'sql/item_strfunc.cc')
-rw-r--r-- | sql/item_strfunc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_strfunc.cc b/sql/item_strfunc.cc index 3f659964a6c..5a23eec5a1b 100644 --- a/sql/item_strfunc.cc +++ b/sql/item_strfunc.cc @@ -2593,7 +2593,7 @@ String *Item_func_quote::val_str(String *str) uint arg_length, new_length; if (!arg) // Null argument { - str->copy("NULL", 4); // Return the string 'NULL' + str->copy("NULL", 4, collation.collation); // Return the string 'NULL' null_value= 0; return str; } |