~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/item_func.h

  • Committer: Brian Aker
  • Date: 2008-07-13 02:23:24 UTC
  • mfrom: (138.1.1 remove-uuid-short)
  • Revision ID: brian@tangent.org-20080713022324-ejablzhzc8vhtw5x
Merge from Mark to remove short UUID

Show diffs side-by-side

added added

removed removed

Lines of Context:
1443
1443
  const char *func_name() const { return "found_rows"; }
1444
1444
  void fix_length_and_dec() { decimals= 0; maybe_null=0; }
1445
1445
};
1446
 
 
1447
 
 
1448
 
void uuid_short_init();
1449
 
 
1450
 
class Item_func_uuid_short :public Item_int_func
1451
 
{
1452
 
public:
1453
 
  Item_func_uuid_short() :Item_int_func() {}
1454
 
  const char *func_name() const { return "uuid_short"; }
1455
 
  longlong val_int();
1456
 
  void fix_length_and_dec()
1457
 
  { max_length= 21; unsigned_flag=1; }
1458
 
};
1459