diff options
author | bell@sanja.is.com.ua <> | 2004-10-21 13:11:15 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-10-21 13:11:15 +0300 |
commit | 84d4c4eb05821e7e5e00ba87aed45eb355b98000 (patch) | |
tree | 78574243b313510c2b5be8e55766d4929958e7c6 /sql/item_strfunc.h | |
parent | 14641772ba4e1ece4839bc67df14dba843f360f5 (diff) | |
download | mariadb-git-84d4c4eb05821e7e5e00ba87aed45eb355b98000.tar.gz |
fixed printing of substring_index (BUG#5911)
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 111f0e20698..8ec597f2a27 100644 --- a/sql/item_strfunc.h +++ b/sql/item_strfunc.h @@ -218,7 +218,7 @@ public: Item_func_substr_index(Item *a,Item *b,Item *c) :Item_str_func(a,b,c) {} String *val_str(String *); void fix_length_and_dec(); - const char *func_name() const { return "substr_index"; } + const char *func_name() const { return "substring_index"; } }; |