~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: Monty Taylor
  • Date: 2010-02-16 07:18:35 UTC
  • mto: (1471.3.2 drizzled-as-lib)
  • mto: This revision was merged to the branch mainline in revision 1479.
  • Revision ID: mordred@inaugust.com-20100216071835-usfwjo51l04tobm1
Removed drizzle_ prefix from some things that don't need it since they're
in a namespace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
193
193
  if (strstr(tmp_path, drizzle_tmpdir) == tmp_path)
194
194
    my_casedn_str(files_charset_info, tmp_path + strlen(drizzle_tmpdir));
195
195
  else
196
 
    my_casedn_str(files_charset_info, tmp_path + drizzle_data_home_len);
 
196
    my_casedn_str(files_charset_info, tmp_path + data_home_len);
197
197
 
198
198
  return tmp_path;
199
199
}
927
927
 
928
928
void plugin::StorageEngine::getSchemaNames(set<string>& set_of_names)
929
929
{
930
 
  CachedDirectory directory(drizzle_data_home, CachedDirectory::DIRECTORY);
 
930
  CachedDirectory directory(data_home, CachedDirectory::DIRECTORY);
931
931
 
932
932
  CachedDirectory::Entries files= directory.getEntries();
933
933