~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/item_create.cc

  • Committer: Brian Aker
  • Date: 2008-07-22 18:31:32 UTC
  • Revision ID: brian@tangent.org-20080722183132-ne2ntl7g7mdf2eez
uint32 -> uin32_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
1811
1811
Item*
1812
1812
Create_func_bin::create(THD *thd, Item *arg1)
1813
1813
{
1814
 
  Item *i10= new (thd->mem_root) Item_int((int32) 10,2);
1815
 
  Item *i2= new (thd->mem_root) Item_int((int32) 2,1);
 
1814
  Item *i10= new (thd->mem_root) Item_int((int32_t) 10,2);
 
1815
  Item *i2= new (thd->mem_root) Item_int((int32_t) 2,1);
1816
1816
  return new (thd->mem_root) Item_func_conv(arg1, i10, i2);
1817
1817
}
1818
1818
 
2646
2646
Item*
2647
2647
Create_func_oct::create(THD *thd, Item *arg1)
2648
2648
{
2649
 
  Item *i10= new (thd->mem_root) Item_int((int32) 10,2);
2650
 
  Item *i8= new (thd->mem_root) Item_int((int32) 8,1);
 
2649
  Item *i10= new (thd->mem_root) Item_int((int32_t) 10,2);
 
2650
  Item *i8= new (thd->mem_root) Item_int((int32_t) 8,1);
2651
2651
  return new (thd->mem_root) Item_func_conv(arg1, i10, i8);
2652
2652
}
2653
2653