~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_strfunc.h

  • Committer: Brian Aker
  • Date: 2008-10-06 05:57:49 UTC
  • Revision ID: brian@tangent.org-20081006055749-svg700gciuqi0zu1
Remove all of uchar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
329
329
  void update_used_tables();
330
330
  const char *func_name() const { return "make_set"; }
331
331
 
332
 
  bool walk(Item_processor processor, bool walk_subquery, uchar *arg)
 
332
  bool walk(Item_processor processor, bool walk_subquery, unsigned char *arg)
333
333
  {
334
334
    return item->walk(processor, walk_subquery, arg) ||
335
335
      Item_str_func::walk(processor, walk_subquery, arg);
336
336
  }
337
 
  Item *transform(Item_transformer transformer, uchar *arg);
 
337
  Item *transform(Item_transformer transformer, unsigned char *arg);
338
338
  virtual void print(String *str, enum_query_type query_type);
339
339
};
340
340