~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_timefunc.h

  • Committer: Brian Aker
  • Date: 2008-08-07 16:29:49 UTC
  • mfrom: (264.1.20 codestyle)
  • Revision ID: brian@tangent.org-20080807162949-7o8eyjgdn8ms3n1a
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
742
742
class Item_char_typecast :public Item_typecast
743
743
{
744
744
  int cast_length;
745
 
  CHARSET_INFO *cast_cs, *from_cs;
 
745
  const CHARSET_INFO *cast_cs, *from_cs;
746
746
  bool charset_conversion;
747
747
  String tmp_value;
748
748
public:
749
 
  Item_char_typecast(Item *a, int length_arg, CHARSET_INFO *cs_arg)
 
749
  Item_char_typecast(Item *a, int length_arg, const CHARSET_INFO * const cs_arg)
750
750
    :Item_typecast(a), cast_length(length_arg), cast_cs(cs_arg) {}
751
751
  enum Functype functype() const { return CHAR_TYPECAST_FUNC; }
752
752
  bool eq(const Item *item, bool binary_cmp) const;