~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.h

  • Committer: Olaf van der Spek
  • Date: 2011-07-05 14:36:13 UTC
  • mto: This revision was merged to the branch mainline in revision 2384.
  • Revision ID: olafvdspek@gmail.com-20110705143613-8ach46f9sd2vbttx
CreateField includes

Show diffs side-by-side

added added

removed removed

Lines of Context:
774
774
 
775
775
std::ostream& operator<<(std::ostream& output, const Field &field);
776
776
 
777
 
} /* namespace drizzled */
778
 
 
779
 
/** @TODO Why is this in the middle of the file???*/
780
 
#include <drizzled/create_field.h>
781
 
 
782
 
namespace drizzled
783
 
{
784
 
 
785
777
/**
786
778
 * A class for sending field information to a client.
787
779
 *
803
795
  uint32_t flags;
804
796
  uint32_t decimals;
805
797
  enum_field_types type;
806
 
  SendField() {}
807
798
};
808
799
 
809
800
uint32_t pack_length_to_packflag(uint32_t type);