diff options
author | unknown <bell@sanja.is.com.ua> | 2005-06-24 00:24:11 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2005-06-24 00:24:11 +0300 |
commit | 3d1172a10f3365b29bce370f37b8740d1798d11e (patch) | |
tree | f3f8efd10b4830578115b4c84348c72a7e17be62 /sql/item_strfunc.h | |
parent | eb3a9091cb4a7712009f31cebe436bf7ef877af9 (diff) | |
download | mariadb-git-3d1172a10f3365b29bce370f37b8740d1798d11e.tar.gz |
fixed encrypt() print (BUG#7024)
mysql-test/r/view.result:
using encrypt & substring_index in view
mysql-test/t/view.test:
using encrypt & substring_index in view
sql/item_strfunc.h:
fixed encrypt() print
Diffstat (limited to 'sql/item_strfunc.h')
-rw-r--r-- | sql/item_strfunc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_strfunc.h b/sql/item_strfunc.h index 8d2eb269915..c4beb3b08cb 100644 --- a/sql/item_strfunc.h +++ b/sql/item_strfunc.h @@ -322,7 +322,7 @@ public: Item_func_encrypt(Item *a, Item *b): Item_str_func(a,b) {} String *val_str(String *); void fix_length_and_dec() { maybe_null=1; max_length = 13; } - const char *func_name() const { return "ecrypt"; } + const char *func_name() const { return "encrypt"; } }; #include "sql_crypt.h" |