~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/int.h

  • Committer: Brian Aker
  • Date: 2009-01-28 19:37:25 UTC
  • mfrom: (779.3.11 devel)
  • Revision ID: brian@tangent.org-20090128193725-pz7g7dnp2dx0863e
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    { max_length=length; fixed= 1; }
35
35
  Item_int(uint64_t i, uint32_t length= MY_INT64_NUM_DECIMAL_DIGITS)
36
36
    :value((int64_t)i)
37
 
    { max_length=length; fixed= 1; unsigned_flag= 1; }
 
37
  { max_length=length; fixed=1; }
38
38
  Item_int(const char *str_arg,int64_t i,uint32_t length) :value(i)
39
39
    { max_length=length; name=(char*) str_arg; fixed= 1; }
40
40
  Item_int(const char *str_arg, uint32_t length=64);