~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/row.h

  • Committer: Monty Taylor
  • Date: 2009-04-14 19:16:51 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 994.
  • Revision ID: mordred@inaugust.com-20090414191651-ltbww6hpqks8k7qk
Clarified instructions in README.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_ITEM_ROW_H
21
21
#define DRIZZLED_ITEM_ROW_H
22
22
 
23
 
#include "drizzled/item.h"
24
 
 
25
 
namespace drizzled
26
 
{
27
 
 
28
23
class Item_row: public Item
29
24
{
30
25
  Item **items;
49
44
  enum Type type() const { return ROW_ITEM; };
50
45
  void illegal_method_call(const char *);
51
46
  bool is_null() { return null_value; }
52
 
  void make_field(SendField *)
 
47
  void make_field(Send_field *)
53
48
  {
54
49
    illegal_method_call((const char*)"make_field");
55
50
  };
92
87
  bool check_cols(uint32_t c);
93
88
  bool null_inside() { return with_null; };
94
89
  void bring_value();
 
90
  bool check_vcol_func_processor(unsigned char *)
 
91
  { return false; }
95
92
};
96
93
 
97
 
} /* namespace drizzled */
98
 
 
99
94
#endif /* DRIZZLED_ITEM_ROW_H */