1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

LOCATE(), INSTR(), POSITION(), FIND_IN_SET(), SUBSTRING_INDEX()

now process arguments according to standard SQL collation determation
rules.
This commit is contained in:
unknown
2003-06-25 15:07:20 +05:00
parent 4ccada56f1
commit 15ee7b04da
6 changed files with 84 additions and 12 deletions

View File

@ -215,7 +215,7 @@ class Item_func_substr_index :public Item_str_func
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() { max_length= args[0]->max_length; }
void fix_length_and_dec();
const char *func_name() const { return "substr_index"; }
};