mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge gluh@192.168.21.1:/usr/home/bk/mysql-4.1
into gluh.mysql.r18.ru:/home/gluh/mysql-4.1.uvar
This commit is contained in:
@ -561,7 +561,7 @@ static void make_sortkey(register SORTPARAM *param,
|
||||
change_double_for_sort(value,(byte*) to);
|
||||
break;
|
||||
}
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
break;
|
||||
@ -971,7 +971,7 @@ sortlength(SORT_FIELD *sortorder, uint s_length, bool *multi_byte_charset)
|
||||
case REAL_RESULT:
|
||||
sortorder->length=sizeof(double);
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
break;
|
||||
|
@ -840,7 +840,7 @@ Item *Item_func_case::find_item(String *str)
|
||||
if (args[i]->val()==first_expr_real && !args[i]->null_value)
|
||||
return args[i+1];
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
break;
|
||||
@ -1224,6 +1224,9 @@ cmp_item* cmp_item::get_comparator(Item *item)
|
||||
case ROW_RESULT:
|
||||
return new cmp_item_row;
|
||||
break;
|
||||
default:
|
||||
DBUG_ASSERT(0);
|
||||
break;
|
||||
}
|
||||
return 0; // to satisfy compiler :)
|
||||
}
|
||||
@ -1366,6 +1369,9 @@ void Item_func_in::fix_length_and_dec()
|
||||
case ROW_RESULT:
|
||||
array= new in_row(arg_count, item);
|
||||
break;
|
||||
default:
|
||||
DBUG_ASSERT(0);
|
||||
return;
|
||||
}
|
||||
uint j=0;
|
||||
for (uint i=0 ; i < arg_count ; i++)
|
||||
|
@ -251,7 +251,7 @@ Field *Item_func::tmp_table_field(TABLE *t_arg)
|
||||
else
|
||||
res= new Field_string(max_length, maybe_null, name, t_arg, charset());
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
break;
|
||||
@ -910,7 +910,7 @@ String *Item_func_min_max::val_str(String *str)
|
||||
}
|
||||
return res;
|
||||
}
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
return 0;
|
||||
@ -1466,7 +1466,7 @@ bool udf_handler::get_arguments()
|
||||
to+= ALIGN_SIZE(sizeof(double));
|
||||
}
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
;
|
||||
@ -1926,7 +1926,7 @@ longlong Item_func_benchmark::val_int()
|
||||
case STRING_RESULT:
|
||||
(void) args[0]->val_str(&tmp);
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
return 0;
|
||||
@ -2062,7 +2062,7 @@ Item_func_set_user_var::update()
|
||||
(void) val_str(&tmp);
|
||||
break;
|
||||
}
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
break;
|
||||
@ -2143,7 +2143,7 @@ Item_func_get_user_var::val_str(String *str)
|
||||
return NULL;
|
||||
}
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
break;
|
||||
@ -2164,7 +2164,7 @@ double Item_func_get_user_var::val()
|
||||
return (double) *(longlong*) entry->value;
|
||||
case STRING_RESULT:
|
||||
return atof(entry->value); // This is null terminated
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
return 0;
|
||||
@ -2185,7 +2185,7 @@ longlong Item_func_get_user_var::val_int()
|
||||
return *(longlong*) entry->value;
|
||||
case STRING_RESULT:
|
||||
return strtoull(entry->value,NULL,10); // String is null terminated
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
return 0;
|
||||
|
@ -387,7 +387,7 @@ double Item_sum_hybrid::val()
|
||||
return (double) sum_int;
|
||||
case REAL_RESULT:
|
||||
return sum;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
return 0;
|
||||
@ -422,7 +422,7 @@ Item_sum_hybrid::val_str(String *str)
|
||||
else
|
||||
str->set((longlong) sum_int,thd_charset());
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
break;
|
||||
@ -467,7 +467,7 @@ bool Item_sum_min::add()
|
||||
}
|
||||
}
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
break;
|
||||
@ -513,7 +513,7 @@ bool Item_sum_max::add()
|
||||
}
|
||||
}
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
break;
|
||||
|
@ -2004,7 +2004,7 @@ void User_var_log_event::pack_info(Protocol* protocol)
|
||||
memcpy(buf + val_offset + 1, val, val_len);
|
||||
buf[val_offset + val_len + 1]= '\'';
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
DBUG_ASSERT(1);
|
||||
return;
|
||||
}
|
||||
@ -2069,7 +2069,7 @@ int User_var_log_event::write_data(IO_CACHE* file)
|
||||
case STRING_RESULT:
|
||||
pos= val;
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
DBUG_ASSERT(1);
|
||||
return 0;
|
||||
}
|
||||
@ -2121,7 +2121,7 @@ void User_var_log_event::print(FILE* file, bool short_form, char* last_db)
|
||||
case STRING_RESULT:
|
||||
fprintf(file, ":='%s';\n", val);
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
DBUG_ASSERT(1);
|
||||
return;
|
||||
}
|
||||
@ -2165,7 +2165,7 @@ int User_var_log_event::exec_event(struct st_relay_log_info* rli)
|
||||
case STRING_RESULT:
|
||||
it= new Item_string(val, val_len, charset);
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
DBUG_ASSERT(1);
|
||||
return 0;
|
||||
}
|
||||
|
@ -207,7 +207,7 @@ static int find_keyword(LEX *lex, uint len, bool function)
|
||||
return (udf->type == UDFTYPE_FUNCTION) ? UDF_FLOAT_FUNC : UDA_FLOAT_SUM;
|
||||
case INT_RESULT:
|
||||
return (udf->type == UDFTYPE_FUNCTION) ? UDF_INT_FUNC : UDA_INT_SUM;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
return 0;
|
||||
|
@ -4007,7 +4007,7 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type,
|
||||
item->name,table,item->charset());
|
||||
return new Field_string(item_sum->max_length,maybe_null,
|
||||
item->name,table,item->charset());
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
return 0;
|
||||
@ -4067,7 +4067,7 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type,
|
||||
new_field= new Field_string(item->max_length,maybe_null,
|
||||
item->name,table,item->str_value.charset());
|
||||
break;
|
||||
case ROW_RESULT:
|
||||
default:
|
||||
// This case should never be choosen
|
||||
DBUG_ASSERT(0);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user