~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/num1.cc

  • Committer: Monty Taylor
  • Date: 2010-10-12 20:20:44 UTC
  • mto: (1842.1.3 build) (1843.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1843.
  • Revision ID: mordred@inaugust.com-20101012202044-yfrmnmkznvkqfxe4
Added support for valgrind suppressions.
Run strip-valgrind as part of make valgrind.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
  case INT_RESULT:
39
39
    unsigned_flag= args[0]->unsigned_flag;
40
40
    break;
41
 
 
42
41
  case STRING_RESULT:
43
42
  case REAL_RESULT:
44
43
    hybrid_type= REAL_RESULT;
45
44
    max_length= float_length(decimals);
46
45
    break;
47
 
 
48
46
  case DECIMAL_RESULT:
49
47
    break;
50
 
 
51
 
  case ROW_RESULT:
 
48
  default:
52
49
    assert(0);
53
50
  }
 
51
  return;
54
52
}
55
53
 
56
54
void Item_func_num1::fix_num_length_and_dec()