~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Brian Aker
  • Date: 2009-03-05 08:26:07 UTC
  • mfrom: (910.2.11 mordred-noatomics)
  • Revision ID: brian@tangent.org-20090305082607-30deookk6sdycdeb
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
303
303
    }
304
304
    else
305
305
    {
306
 
        // Return only .frm files which aren't temp files.
307
 
      if (my_strcasecmp(system_charset_info, ext=fn_rext(file->name),reg_ext) ||
 
306
      // Return only .frm files which aren't temp files.
 
307
      if (my_strcasecmp(system_charset_info, ext=fn_rext(file->name),".dfe") ||
308
308
          is_prefix(file->name, TMP_FILE_PREFIX))
309
309
        continue;
310
310
      *ext=0;
2259
2259
  {
2260
2260
    char path[FN_REFLEN];
2261
2261
    (void) build_table_filename(path, sizeof(path), db_name->str,
2262
 
                                table_name->str, reg_ext, 0);
 
2262
                                table_name->str, "", 0);
2263
2263
 
2264
2264
      table->field[3]->store(STRING_WITH_LEN("BASE Table"),
2265
2265
                             system_charset_info);