~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

  • Committer: Brian Aker
  • Date: 2009-08-15 00:39:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1116.
  • Revision ID: brian@gaz-20090815003929-wksi5qmm6ci6f9o6
Remove dead myisam program

Show diffs side-by-side

added added

removed removed

Lines of Context:
548
548
    open of a table that is in use by other threads already (if the
549
549
    MyISAM share exists already).
550
550
  */
551
 
  if (!(file=mi_open(name, mode, test_if_locked | HA_OPEN_FROM_SQL_LAYER)))
 
551
  if (!(file=mi_open(name, mode, test_if_locked)))
552
552
    return (my_errno ? my_errno : -1);
 
553
 
553
554
  if (!table->s->tmp_table) /* No need to perform a check for tmp table */
554
555
  {
555
556
    if ((my_errno= table2myisam(table, &keyinfo, &recinfo, &recs)))