diff options
author | unknown <serg@serg.mylan> | 2003-10-20 15:53:48 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-10-20 15:53:48 +0200 |
commit | 228f4a43a353e9e7c56e1a617749fc9c0e875f6d (patch) | |
tree | ff0f9b71c43cfc4ed4e2fa91a8398677dae7377a /sql/item_cmpfunc.h | |
parent | 4a253d2af04869a3e28831b71ddbc5d78279fe5e (diff) | |
download | mariadb-git-228f4a43a353e9e7c56e1a617749fc9c0e875f6d.tar.gz |
FULLTEXT: correct charset support (UTF included, UCS2 - not)
code cleanup
include/m_ctype.h:
my_mbcharlen_8bit() { return 1 }
mysql-test/r/fulltext.result:
fulltext on UTF
mysql-test/t/fulltext.test:
fulltext on UTF
sql/item_cmpfunc.h:
cleanup
sql/sql_table.cc:
FULLTEXT: UCS2 is not allowed
sql/sql_yacc.yy:
FULLTEXT: code cleanup
strings/ctype-bin.c:
my_mbcharlen_8bit() { return 1 }
strings/ctype-latin1.c:
my_mbcharlen_8bit() { return 1 }
strings/ctype-simple.c:
my_mbcharlen_8bit() { return 1 }
strings/ctype-tis620.c:
my_mbcharlen_8bit() { return 1 }
strings/ctype-utf8.c:
hack: (to be fixed properly later) all multi-byte sequences are considered isalpha() now
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r-- | sql/item_cmpfunc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index 42b73c48606..41e7060335c 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -647,7 +647,6 @@ class Item_func_in :public Item_int_func ~Item_func_in() { delete array; delete in_item; } optimize_type select_optimize() const { return array ? OPTIMIZE_KEY : OPTIMIZE_NONE; } - Item *key_item() const { return args[0]; } void print(String *str); enum Functype functype() const { return IN_FUNC; } const char *func_name() const { return " IN "; } |