~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_result_interceptor.h

Removed dependency for hex convert, fixed a few Protocol class issues for Solaris.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include <drizzled/select_result.h>
25
25
 
26
 
namespace drizzled
27
 
{
28
 
 
29
26
/*
30
27
  Base class for select_result descendands which intercept and
31
28
  transform result set rows. As the rows are not sent to the client,
38
35
  select_result_interceptor() {}              /* Remove gcc warning */
39
36
  uint32_t field_count(List<Item> &) const
40
37
  { return 0; }
41
 
  bool send_fields(List<Item> &)
 
38
  bool send_fields(List<Item> &, uint32_t)
42
39
  { return false; }
43
40
};
44
41
 
45
42
 
46
 
} /* namespace drizzled */
47
 
 
48
43
#endif /* DRIZZLED_SELECT_RESULT_INTERCEPTOR_H */