~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.h

  • Committer: Nathan Williams
  • Date: 2009-06-05 23:18:55 UTC
  • mto: This revision was merged to the branch mainline in revision 1063.
  • Revision ID: nathanlws@gmail.com-20090605231855-8ea4406867is6grf
No actual code changes. Changed Send_field to SendField to be consistent with coding standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
const uint32_t max_field_size= (uint32_t) 4294967295U;
42
42
 
43
43
class Table;
44
 
class Send_field;
 
44
class SendField;
45
45
class Protocol;
46
46
class CreateField;
47
47
 
294
294
   */
295
295
  size_t last_null_byte() const;
296
296
 
297
 
  virtual void make_field(Send_field *);
 
297
  virtual void make_field(SendField *);
298
298
  virtual void sort_string(unsigned char *buff,uint32_t length)=0;
299
299
  virtual bool optimize_range(uint32_t idx, uint32_t part);
300
300
  /*
614
614
  A class for sending info to the client
615
615
*/
616
616
 
617
 
class Send_field {
 
617
class SendField {
618
618
 public:
619
619
  const char *db_name;
620
620
  const char *table_name,*org_table_name;
622
622
  uint32_t length;
623
623
  uint32_t charsetnr, flags, decimals;
624
624
  enum_field_types type;
625
 
  Send_field() {}
 
625
  SendField() {}
626
626
};
627
627
 
628
628