~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

  • Committer: Lee Bieber
  • Date: 2011-03-03 19:19:28 UTC
  • mfrom: (2216.1.3 build)
  • Revision ID: kalebral@gmail.com-20110303191928-h2kris5kavbgmzu0
Merge Shrews - 728432: Remove write_bin_log() since it is no longer used.
Merge Andrew - 722988: wrong message for drizzled --verbose 
Merge Andrew - 728314: mysql socket file not created
Merge Stewart - 728288: enum_query_type is unused

Show diffs side-by-side

added added

removed removed

Lines of Context:
362
362
  return class_decimal_int_part(decimal_precision(), decimals);
363
363
}
364
364
 
365
 
void Item::print(String *str, enum_query_type)
 
365
void Item::print(String *str)
366
366
{
367
367
  str->append(full_name());
368
368
}
369
369
 
370
 
void Item::print_item_w_name(String *str, enum_query_type query_type)
 
370
void Item::print_item_w_name(String *str)
371
371
{
372
 
  print(str, query_type);
 
372
  print(str);
373
373
 
374
374
  if (name)
375
375
  {
740
740
                  const char *table_name_arg, const char *field_name_arg)
741
741
    :Item_ref(context_arg, item, table_name_arg, field_name_arg) {}
742
742
 
743
 
  virtual inline void print (String *str, enum_query_type query_type)
 
743
  virtual inline void print (String *str)
744
744
  {
745
745
    if (ref)
746
 
      (*ref)->print(str, query_type);
 
746
      (*ref)->print(str);
747
747
    else
748
 
      Item_ident::print(str, query_type);
 
748
      Item_ident::print(str);
749
749
  }
750
750
};
751
751