~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/int.h

  • Committer: Brian Aker
  • Date: 2009-02-21 00:18:15 UTC
  • Revision ID: brian@tangent.org-20090221001815-x20e8h71e984lvs1
Completion (?) of uint conversion.

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
  virtual void print(String *str, enum_query_type query_type);
52
52
  Item_num *neg() { value= -value; return this; }
53
53
  uint32_t decimal_precision() const
54
 
  { return (uint)(max_length - test(value < 0)); }
 
54
  { return (uint32_t)(max_length - test(value < 0)); }
55
55
  bool eq(const Item *, bool binary_cmp) const;
56
56
  bool check_vcol_func_processor(unsigned char *)
57
57
  { return false; }