~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Monty Taylor
  • Date: 2008-11-17 00:31:15 UTC
  • mfrom: (588 drizzle)
  • mto: (589.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081117003115-victcikd0x2tqg1f
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
282
282
    {
283
283
        // Return only .frm files which aren't temp files.
284
284
      if (my_strcasecmp(system_charset_info, ext=fn_rext(file->name),reg_ext) ||
285
 
          is_prefix(file->name, tmp_file_prefix))
 
285
          is_prefix(file->name, TMP_FILE_PREFIX))
286
286
        continue;
287
287
      *ext=0;
288
288
      file_name_len= filename_to_tablename(file->name, uname, sizeof(uname));