~mordred/drizzle/codestyle

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.cc

  • Committer: Monty
  • Date: 2008-10-02 05:41:33 UTC
  • mfrom: (398.1.10 codestyle)
  • Revision ID: mordred@scylla.inaugust.com-20081002054133-tyxv5bmqpazfaqqi
Merged up to 408 of stdint-includes-fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
544
544
  }
545
545
  
546
546
  if (test_if_locked & (HA_OPEN_IGNORE_IF_LOCKED | HA_OPEN_TMP_TABLE))
547
 
    VOID(mi_extra(file, HA_EXTRA_NO_WAIT_LOCK, 0));
 
547
    mi_extra(file, HA_EXTRA_NO_WAIT_LOCK, 0);
548
548
 
549
549
  info(HA_STATUS_NO_LOCK | HA_STATUS_VARIABLE | HA_STATUS_CONST);
550
550
  if (!(test_if_locked & HA_OPEN_WAIT_IF_LOCKED))
551
 
    VOID(mi_extra(file, HA_EXTRA_WAIT_LOCK, 0));
 
551
    mi_extra(file, HA_EXTRA_WAIT_LOCK, 0);
552
552
  if (!table->s->db_record_offset)
553
553
    int_table_flags|=HA_REC_NOT_IN_SEQ;
554
554
  if (file->s->options & (HA_OPTION_CHECKSUM | HA_OPTION_COMPRESS_RECORD))
1291
1291
  return mi_delete(file,buf);
1292
1292
}
1293
1293
 
1294
 
C_MODE_START
 
1294
#ifdef __cplusplus
 
1295
extern "C" {
 
1296
#endif
1295
1297
 
1296
1298
bool index_cond_func_myisam(void *arg)
1297
1299
{
1305
1307
  return (bool)h->pushed_idx_cond->val_int();
1306
1308
}
1307
1309
 
1308
 
C_MODE_END
 
1310
#ifdef __cplusplus
 
1311
}
 
1312
#endif
1309
1313
 
1310
1314
 
1311
1315
int ha_myisam::index_init(uint idx, bool sorted __attribute__((unused)))