~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/unireg.cc

merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
605
605
{
606
606
  string from_path(from);
607
607
  string to_path(to);
608
 
  string file_ext = ".tabledefinition";
 
608
  string file_ext = ".dfe";
609
609
 
610
610
  from_path.append(file_ext);
611
611
  to_path.append(file_ext);
616
616
int delete_table_proto_file(char *file_name)
617
617
{
618
618
  string new_path(file_name);
619
 
  string file_ext = ".tabledefinition";
 
619
  string file_ext = ".dfe";
620
620
 
621
621
  new_path.append(file_ext);
622
622
  return my_delete(new_path.c_str(), MYF(0));
631
631
{
632
632
  drizzle::Table table_proto;
633
633
  string new_path(file_name);
634
 
  string file_ext = ".tabledefinition";
 
634
  string file_ext = ".dfe";
635
635
 
636
636
  fill_table_proto(&table_proto, table_name, create_fields, create_info,
637
637
                   keys, key_info);