~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/set_var.cc

  • Committer: Monty Taylor
  • Date: 2009-04-11 17:47:02 UTC
  • mfrom: (988.2.2 drizzle)
  • mto: (992.1.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: mordred@inaugust.com-20090411174702-ar25c5jzvhh1u1mj
MergedĀ fromĀ Trond.

Show diffs side-by-side

added added

removed removed

Lines of Context:
643
643
 
644
644
bool sys_var_uint32_t_ptr::check(Session *, set_var *var)
645
645
{
646
 
  var->save_result.uint32_t_value= var->value->val_int();
 
646
  var->save_result.uint32_t_value= (uint32_t)var->value->val_int();
647
647
  return 0;
648
648
}
649
649