~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/sum.h

  • 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:
368
368
  virtual bool const_item() const { return forced_const; }
369
369
  virtual bool const_during_execution() const { return false; }
370
370
  void make_field(SendField *field);
371
 
  virtual void print(String *str, enum_query_type query_type);
 
371
  virtual void print(String *str);
372
372
  void fix_num_length_and_dec();
373
373
 
374
374
  /*
1043
1043
  String* val_str(String* str);
1044
1044
  Item *copy_or_same(Session* session);
1045
1045
  void no_rows_in_result() {}
1046
 
  virtual void print(String *str, enum_query_type query_type);
 
1046
  virtual void print(String *str);
1047
1047
  virtual bool change_context_processor(unsigned char *cntx)
1048
1048
    { context= (Name_resolution_context *)cntx; return false; }
1049
1049
};