Loading sql/item_func.h +1 −2 Original line number Diff line number Diff line Loading @@ -829,7 +829,7 @@ class Item_func_inet_aton : public Item_int_func }; /* SerG: for fulltext search */ /* for fulltext search */ #include <ft_global.h> class Item_func_match :public Item_real_func Loading @@ -855,4 +855,3 @@ class Item_func_match :public Item_real_func double val(); longlong val_int() { return val()!=0.0; } }; sql/sql_parse.cc +40 −40 Original line number Diff line number Diff line Loading @@ -1132,7 +1132,7 @@ mysql_execute_command(void) break; } #endif case SQLCOM_SHOW_CREATE: case SQLCOM_SHOW_CREATE: /* SerG:show */ { if(! tables->db) tables->db = thd->db; Loading Loading @@ -1389,7 +1389,7 @@ mysql_execute_command(void) break; } #endif case SQLCOM_SHOW_FIELDS: case SQLCOM_SHOW_FIELDS: /* SerG:show */ #ifdef DONT_ALLOW_SHOW_COMMANDS send_error(&thd->net,ER_NOT_ALLOWED_COMMAND); /* purecov: inspected */ DBUG_VOID_RETURN; Loading @@ -1415,7 +1415,7 @@ mysql_execute_command(void) break; } #endif case SQLCOM_SHOW_KEYS: case SQLCOM_SHOW_KEYS: /* SerG:show */ #ifdef DONT_ALLOW_SHOW_COMMANDS send_error(&thd->net,ER_NOT_ALLOWED_COMMAND); /* purecov: inspected */ DBUG_VOID_RETURN; Loading sql/sql_yacc.yy +36 −35 Original line number Diff line number Diff line Loading @@ -961,6 +961,7 @@ delete_option: key_type: opt_constraint PRIMARY_SYM KEY_SYM { $$= Key::PRIMARY; } | key_or_index { $$= Key::MULTIPLE; } | COLLECTION { $$= Key::FULLTEXT; } | opt_constraint UNIQUE_SYM { $$= Key::UNIQUE; } | opt_constraint UNIQUE_SYM key_or_index { $$= Key::UNIQUE; } Loading Loading
sql/item_func.h +1 −2 Original line number Diff line number Diff line Loading @@ -829,7 +829,7 @@ class Item_func_inet_aton : public Item_int_func }; /* SerG: for fulltext search */ /* for fulltext search */ #include <ft_global.h> class Item_func_match :public Item_real_func Loading @@ -855,4 +855,3 @@ class Item_func_match :public Item_real_func double val(); longlong val_int() { return val()!=0.0; } };
sql/sql_parse.cc +40 −40 Original line number Diff line number Diff line Loading @@ -1132,7 +1132,7 @@ mysql_execute_command(void) break; } #endif case SQLCOM_SHOW_CREATE: case SQLCOM_SHOW_CREATE: /* SerG:show */ { if(! tables->db) tables->db = thd->db; Loading Loading @@ -1389,7 +1389,7 @@ mysql_execute_command(void) break; } #endif case SQLCOM_SHOW_FIELDS: case SQLCOM_SHOW_FIELDS: /* SerG:show */ #ifdef DONT_ALLOW_SHOW_COMMANDS send_error(&thd->net,ER_NOT_ALLOWED_COMMAND); /* purecov: inspected */ DBUG_VOID_RETURN; Loading @@ -1415,7 +1415,7 @@ mysql_execute_command(void) break; } #endif case SQLCOM_SHOW_KEYS: case SQLCOM_SHOW_KEYS: /* SerG:show */ #ifdef DONT_ALLOW_SHOW_COMMANDS send_error(&thd->net,ER_NOT_ALLOWED_COMMAND); /* purecov: inspected */ DBUG_VOID_RETURN; Loading
sql/sql_yacc.yy +36 −35 Original line number Diff line number Diff line Loading @@ -961,6 +961,7 @@ delete_option: key_type: opt_constraint PRIMARY_SYM KEY_SYM { $$= Key::PRIMARY; } | key_or_index { $$= Key::MULTIPLE; } | COLLECTION { $$= Key::FULLTEXT; } | opt_constraint UNIQUE_SYM { $$= Key::UNIQUE; } | opt_constraint UNIQUE_SYM key_or_index { $$= Key::UNIQUE; } Loading