~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_result_interceptor.h

  • Committer: Mark Atwood
  • Date: 2011-06-14 06:10:57 UTC
  • mfrom: (2318.2.19 rf)
  • Revision ID: me@mark.atwood.name-20110614061057-u08az4cidd4l7blm
mergeĀ lp:~olafvdspek/drizzle/refactor4

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
  sending of result set metadata should be suppressed as well.
32
32
*/
33
33
 
34
 
class select_result_interceptor: public select_result
 
34
class select_result_interceptor : public select_result
35
35
{
36
36
public:
37
 
  select_result_interceptor() {}              /* Remove gcc warning */
38
 
  uint32_t field_count(List<Item> &) const
 
37
  uint32_t field_count(List<Item>&) const
39
38
  { return 0; }
40
 
  bool send_fields(List<Item> &)
41
 
  { return false; }
 
39
  void send_fields(List<Item>&)
 
40
  { }
42
41
};
43
42
 
44
43