~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_buff.cc

  • Committer: Brian Aker
  • Date: 2008-08-10 17:18:41 UTC
  • mfrom: (287.3.13 codestyle)
  • Revision ID: brian@tangent.org-20080810171841-pkvi2ky94wbd0nt5
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
*/
64
64
 
65
65
Cached_item_str::Cached_item_str(THD *thd, Item *arg)
66
 
  :item(arg), value(min(arg->max_length, thd->variables.max_sort_length))
 
66
  :item(arg), value(min(arg->max_length, (uint32_t)thd->variables.max_sort_length))
67
67
{}
68
68
 
69
69
bool Cached_item_str::cmp(void)