~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/int64.h

  • Committer: Brian Aker
  • Date: 2010-12-20 10:21:10 UTC
  • mto: This revision was merged to the branch mainline in revision 2016.
  • Revision ID: brian@tangent.org-20101220102110-60oh6zarw5n9nhah
Fixing up a, somewhat, hidden unsigned type to solve a few issues around
numbers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
  Int64(uint32_t len_arg,bool maybe_null_arg,
57
57
        const char *field_name_arg,
58
58
        bool unsigned_arg) :
59
 
    Field_num((unsigned char*) 0, len_arg, maybe_null_arg ? (unsigned char*) "": 0,0,
60
 
              NONE, field_name_arg,0,0,unsigned_arg)
 
59
    Field_num((unsigned char*) 0,
 
60
              len_arg, maybe_null_arg ? (unsigned char*) "": 0,
 
61
              0,
 
62
              NONE,
 
63
              field_name_arg,
 
64
              0,
 
65
              0,
 
66
              unsigned_arg)
61
67
    {
 
68
      assert(not unsigned_arg);
62
69
    }
63
70
 
64
71
  enum Item_result result_type () const { return INT_RESULT; }