~linuxjedi/drizzle/drizzle-bug-647360

« back to all changes in this revision

Viewing changes to drizzled/field.h

  • Committer: lbieber
  • Date: 2010-09-23 15:49:15 UTC
  • mfrom: (1788.1.3 build)
  • Revision ID: lbieber@orisndriz08-20100923154915-mshh9pwln0igdwrn
Merge Brian - Rollup patch of enum + style on varchar. This modifies enum to always being the same value.
Merge Stewart - Fix embedded_innodb plugin now that TIMESTAMP is 8 bytes. 
Merge Shrews - fix bug 643630 -  Transaction_reader not handling CHAR values that include quotes properly

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
 
64
64
int field_conv(Field *to,Field *from);
65
65
 
66
 
inline uint32_t get_enum_pack_length(int elements)
67
 
{
68
 
  return elements < 256 ? 1 : 2;
69
 
}
70
 
 
71
66
/**
72
67
 * Class representing a Field in a Table
73
68
 *