~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/ha_heap.cc

  • Committer: Brian Aker
  • Date: 2008-10-20 03:40:03 UTC
  • mto: (492.3.21 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: brian@tangent.org-20081020034003-t2dcnl0ayr2ymm8k
THD -> Session rename

Show diffs side-by-side

added added

removed removed

Lines of Context:
419
419
  return 0;
420
420
}
421
421
 
422
 
int ha_heap::external_lock(THD *thd __attribute__((unused)),
 
422
int ha_heap::external_lock(Session *thd __attribute__((unused)),
423
423
                           int lock_type __attribute__((unused)))
424
424
{
425
425
  return 0;                                     // No external locking
533
533
  return heap_indexes_are_disabled(file);
534
534
}
535
535
 
536
 
THR_LOCK_DATA **ha_heap::store_lock(THD *thd __attribute__((unused)),
 
536
THR_LOCK_DATA **ha_heap::store_lock(Session *thd __attribute__((unused)),
537
537
                                    THR_LOCK_DATA **to,
538
538
                                    enum thr_lock_type lock_type)
539
539
{