Browse Source

Bug#51289: double Item_cache_decimal::val_real() is broken

Fix up function return value, it must return a double.
pull/374/head
Davi Arnaut 16 years ago
parent
commit
9fc32c2e24
  1. 2
      sql/item.cc

2
sql/item.cc

@ -7159,7 +7159,7 @@ double Item_cache_decimal::val_real()
DBUG_ASSERT(fixed);
double res;
if (!value_cached && !cache_value())
return NULL;
return 0.0;
my_decimal2double(E_DEC_FATAL_ERROR, &decimal_value, &res);
return res;
}

Loading…
Cancel
Save