Commit c1486c2c authored by bar@bar.mysql.r18.ru's avatar bar@bar.mysql.r18.ru

More use of new str->num conversion routines

parent 59069e60
...@@ -35,10 +35,10 @@ class Item_proc :public Item ...@@ -35,10 +35,10 @@ class Item_proc :public Item
} }
enum Type type() const { return Item::PROC_ITEM; } enum Type type() const { return Item::PROC_ITEM; }
virtual void set(double nr)=0; virtual void set(double nr)=0;
virtual void set(const char *str,uint length)=0; virtual void set(const char *str,uint length,CHARSET_INFO *cs)=0;
virtual void set(longlong nr)=0; virtual void set(longlong nr)=0;
virtual enum_field_types field_type() const=0; virtual enum_field_types field_type() const=0;
void set(const char *str) { set(str,(uint) strlen(str)); } void set(const char *str) { set(str,(uint) strlen(str), thd_charset()); }
void make_field(Send_field *tmp_field) void make_field(Send_field *tmp_field)
{ {
init_make_field(tmp_field,field_type()); init_make_field(tmp_field,field_type());
...@@ -58,8 +58,8 @@ class Item_proc_real :public Item_proc ...@@ -58,8 +58,8 @@ class Item_proc_real :public Item_proc
enum_field_types field_type() const { return FIELD_TYPE_DOUBLE; } enum_field_types field_type() const { return FIELD_TYPE_DOUBLE; }
void set(double nr) { value=nr; } void set(double nr) { value=nr; }
void set(longlong nr) { value=(double) nr; } void set(longlong nr) { value=(double) nr; }
void set(const char *str,uint length __attribute__((unused))) void set(const char *str,uint length,CHARSET_INFO *cs)
{ value=atof(str); } { value=my_strntod(cs,str,length,(char**)0); }
double val() { return value; } double val() { return value; }
longlong val_int() { return (longlong) value; } longlong val_int() { return (longlong) value; }
String *val_str(String *s) { s->set(value,decimals,thd_charset()); return s; } String *val_str(String *s) { s->set(value,decimals,thd_charset()); return s; }
...@@ -76,8 +76,8 @@ class Item_proc_int :public Item_proc ...@@ -76,8 +76,8 @@ class Item_proc_int :public Item_proc
enum_field_types field_type() const { return FIELD_TYPE_LONG; } enum_field_types field_type() const { return FIELD_TYPE_LONG; }
void set(double nr) { value=(longlong) nr; } void set(double nr) { value=(longlong) nr; }
void set(longlong nr) { value=nr; } void set(longlong nr) { value=nr; }
void set(const char *str,uint length __attribute__((unused))) void set(const char *str,uint length, CHARSET_INFO *cs)
{ value=strtoll(str,NULL,10); } { value=my_strntoll(cs,str,length,NULL,10); }
double val() { return (double) value; } double val() { return (double) value; }
longlong val_int() { return value; } longlong val_int() { return value; }
String *val_str(String *s) { s->set(value, thd_charset()); return s; } String *val_str(String *s) { s->set(value, thd_charset()); return s; }
...@@ -94,9 +94,18 @@ class Item_proc_string :public Item_proc ...@@ -94,9 +94,18 @@ class Item_proc_string :public Item_proc
enum_field_types field_type() const { return FIELD_TYPE_STRING; } enum_field_types field_type() const { return FIELD_TYPE_STRING; }
void set(double nr) { str_value.set(nr, 2, thd_charset()); } void set(double nr) { str_value.set(nr, 2, thd_charset()); }
void set(longlong nr) { str_value.set(nr, thd_charset()); } void set(longlong nr) { str_value.set(nr, thd_charset()); }
void set(const char *str, uint length) { str_value.copy(str,length, thd_charset()); } void set(const char *str, uint length, CHARSET_INFO *cs)
double val() { return atof(str_value.ptr()); } { str_value.copy(str,length,cs); }
longlong val_int() { return strtoll(str_value.ptr(),NULL,10); } double val()
{
CHARSET_INFO *cs=str_value.charset();
return my_strntod(cs, str_value.ptr(), str_value.length(),(char**)0);
}
longlong val_int()
{
CHARSET_INFO *cs=str_value.charset();
return my_strntoll(cs,str_value.ptr(),str_value.length(),NULL,10);
}
String *val_str(String*) String *val_str(String*)
{ {
return null_value ? (String*) 0 : (String*) &str_value; return null_value ? (String*) 0 : (String*) &str_value;
......
...@@ -593,23 +593,23 @@ bool analyse::end_of_records() ...@@ -593,23 +593,23 @@ bool analyse::end_of_records()
{ {
func_items[1]->null_value = 0; func_items[1]->null_value = 0;
res = (*f)->get_min_arg(&s_min); res = (*f)->get_min_arg(&s_min);
func_items[1]->set(res->ptr(), res->length()); func_items[1]->set(res->ptr(), res->length(), res->charset());
func_items[2]->null_value = 0; func_items[2]->null_value = 0;
res = (*f)->get_max_arg(&s_max); res = (*f)->get_max_arg(&s_max);
func_items[2]->set(res->ptr(), res->length()); func_items[2]->set(res->ptr(), res->length(), res->charset());
} }
func_items[3]->set((longlong) (*f)->min_length); func_items[3]->set((longlong) (*f)->min_length);
func_items[4]->set((longlong) (*f)->max_length); func_items[4]->set((longlong) (*f)->max_length);
func_items[5]->set((longlong) (*f)->empty); func_items[5]->set((longlong) (*f)->empty);
func_items[6]->set((longlong) (*f)->nulls); func_items[6]->set((longlong) (*f)->nulls);
res = (*f)->avg(&s_max, rows); res = (*f)->avg(&s_max, rows);
func_items[7]->set(res->ptr(), res->length()); func_items[7]->set(res->ptr(), res->length(), res->charset());
func_items[8]->null_value = 0; func_items[8]->null_value = 0;
res = (*f)->std(&s_max, rows); res = (*f)->std(&s_max, rows);
if (!res) if (!res)
func_items[8]->null_value = 1; func_items[8]->null_value = 1;
else else
func_items[8]->set(res->ptr(), res->length()); func_items[8]->set(res->ptr(), res->length(), res->charset());
// count the dots, quotas, etc. in (ENUM("a","b","c"...)) // count the dots, quotas, etc. in (ENUM("a","b","c"...))
// if tree has been removed, don't suggest ENUM. // if tree has been removed, don't suggest ENUM.
// treemem is used to measure the size of tree for strings, // treemem is used to measure the size of tree for strings,
...@@ -640,7 +640,7 @@ bool analyse::end_of_records() ...@@ -640,7 +640,7 @@ bool analyse::end_of_records()
if (!(*f)->nulls) if (!(*f)->nulls)
tmp_str.append(" NOT NULL"); tmp_str.append(" NOT NULL");
output_str_length = tmp_str.length(); output_str_length = tmp_str.length();
func_items[9]->set(tmp_str.ptr(), tmp_str.length()); func_items[9]->set(tmp_str.ptr(), tmp_str.length(), tmp_str.charset());
if (result->send_data(result_fields)) if (result->send_data(result_fields))
return -1; return -1;
continue; continue;
...@@ -687,7 +687,7 @@ bool analyse::end_of_records() ...@@ -687,7 +687,7 @@ bool analyse::end_of_records()
} }
if (!(*f)->nulls) if (!(*f)->nulls)
ans.append(" NOT NULL"); ans.append(" NOT NULL");
func_items[9]->set(ans.ptr(), ans.length()); func_items[9]->set(ans.ptr(), ans.length(), ans.charset());
if (result->send_data(result_fields)) if (result->send_data(result_fields))
return -1; return -1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment