~ubuntu-branches/ubuntu/precise/mysql-5.5/precise-proposed

« back to all changes in this revision

Viewing changes to sql/item_func.h

  • Committer: Package Import Robot
  • Author(s): Dave Chiluk, Eduardo Damato
  • Date: 2014-01-09 09:44:14 UTC
  • mfrom: (18.1.5 precise-security)
  • Revision ID: package-import@ubuntu.com-20140109094414-ght3gi7yvzsyvhm5
Tags: 5.5.34-0ubuntu0.12.04.2
[ Eduardo Damato ]
Fix upstart script to account for datadir disk shortage (LP: #1121874) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1492
1492
    :Item_func(b), cached_result_type(INT_RESULT),
1493
1493
     entry(NULL), entry_thread_id(0), delayed_non_constness(delayed), name(a)
1494
1494
  {}
 
1495
  Item_func_set_user_var(THD *thd, Item_func_set_user_var *item)
 
1496
    :Item_func(thd, item), cached_result_type(item->cached_result_type),
 
1497
    entry(item->entry), entry_thread_id(item->entry_thread_id),
 
1498
    value(item->value), decimal_buff(item->decimal_buff),
 
1499
    null_item(item->null_item), save_result(item->save_result),
 
1500
    name(item->name)
 
1501
  {}
 
1502
 
1495
1503
  enum Functype functype() const { return SUSERVAR_FUNC; }
1496
1504
  double val_real();
1497
1505
  longlong val_int();