~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_open.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:
130
130
      my_errno=HA_ERR_OLD_FILE;
131
131
      goto err;
132
132
    }
133
 
    if ((share->options & HA_OPTION_RELIES_ON_SQL_LAYER) &&
134
 
        ! (open_flags & HA_OPEN_FROM_SQL_LAYER))
135
 
    {
136
 
      my_errno= HA_ERR_UNSUPPORTED;
137
 
      goto err;
138
 
    }
 
133
 
139
134
    /* Don't call realpath() if the name can't be a link */
140
135
    ssize_t sym_link_size= readlink(org_name,index_name,FN_REFLEN-1);
141
136
    if (sym_link_size >= 0 )