~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/int64.h

  • Committer: Brian Aker
  • Date: 2011-01-25 07:22:15 UTC
  • mfrom: (2109.1.7 drizzle-build)
  • Revision ID: brian@tangent.org-20110125072215-567z6uzy5vdvn4va
Merge in build/timestamp patches/fixes.

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; }