~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to include/myisam.h

  • Committer: Brian Aker
  • Date: 2008-07-22 18:31:32 UTC
  • Revision ID: brian@tangent.org-20080722183132-ne2ntl7g7mdf2eez
uint32 -> uin32_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
185
185
  uint16 minlength;                     /* min length of (packed) key (auto) */
186
186
  uint16 maxlength;                     /* max length of (packed) key (auto) */
187
187
  uint16 block_size_index;              /* block_size (auto) */
188
 
  uint32 version;                       /* For concurrent read/write */
 
188
  uint32_t version;                     /* For concurrent read/write */
189
189
 
190
190
  HA_KEYSEG *seg,*end;
191
191
 
235
235
{
236
236
  int16  type;                          /* en_fieldtype */
237
237
  uint16 length;                        /* length of field */
238
 
  uint32 offset;                        /* Offset to position in row */
 
238
  uint32_t offset;                      /* Offset to position in row */
239
239
  uint8  null_bit;                      /* If column may be 0 */
240
240
  uint16 null_pos;                      /* position for null marker */
241
241