~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/my_decimal.h

  • Committer: Monty Taylor
  • Date: 2008-07-09 16:42:25 UTC
  • mto: (77.6.1 glibclient-merge)
  • mto: This revision was merged to the branch mainline in revision 112.
  • Revision ID: monty@inaugust.com-20080709164225-2r6n4j98nhxh031l
Moved test to tests... 

Show diffs side-by-side

added added

removed removed

Lines of Context:
278
278
 
279
279
 
280
280
inline
281
 
int my_decimal2double(uint mask, const my_decimal *d, double *result)
 
281
int my_decimal2double(uint mask __attribute__((__unused__)), 
 
282
                      const my_decimal *d, double *result)
282
283
{
283
284
  /* No need to call check_result as this will always succeed */
284
285
  return decimal2double((decimal_t*) d, result);