~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/int64.h

updating to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
  uint32_t pack_length() const { return 8; }
89
89
  void sql_type(String &str) const;
90
90
  bool can_be_compared_as_int64_t() const { return true; }
91
 
  uint32_t max_display_length() { return 20; }
 
91
  uint32_t max_display_length() { return MY_INT64_NUM_DECIMAL_DIGITS; }
92
92
  virtual unsigned char *pack(unsigned char* to, const unsigned char *from,
93
93
                              uint32_t max_length,
94
94
                              bool low_byte_first);