~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/db.cc

  • Committer: Monty Taylor
  • Date: 2009-06-09 14:30:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1060.
  • Revision ID: mordred@inaugust.com-20090609143027-4gx5zvwmqtznqeoi
RemovedĀ strconvert.

Show diffs side-by-side

added added

removed removed

Lines of Context:
392
392
  pthread_mutex_lock(&LOCK_create_db);
393
393
 
394
394
  length= build_table_filename(path, sizeof(path), db, "", false);
 
395
printf("MT: db path == %s\n",path);
395
396
  strcpy(path+length, MY_DB_OPT_FILE);         // Append db option file name
396
397
  unlink(path);
397
398
  path[length]= '\0';                           // Remove file name
 
399
printf("MT: db path == %s\n",path);
398
400
 
399
401
  /* See if the directory exists */
400
402
  if (!(dirp= my_dir(path,MYF(MY_DONT_SORT))))