~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/haildb/haildb_engine.cc

  • Committer: Olaf van der Spek
  • Date: 2011-02-24 13:19:47 UTC
  • mto: (2209.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2207.
  • Revision ID: olafvdspek@gmail.com-20110224131947-0fra5adn3kixp6v1
Use "iter->" instead of "(*iter)."

Show diffs side-by-side

added added

removed removed

Lines of Context:
787
787
    std::transform(find_name.begin(), find_name.end(), find_name.begin(), ::toupper);
788
788
    boost::unordered_set<string>::iterator iter= haildb_system_table_names.find(find_name);
789
789
    if (iter != haildb_system_table_names.end())
790
 
      return (*iter).c_str()+sys_table_prefix.length();
 
790
      return iter->c_str()+sys_table_prefix.length();
791
791
  }
792
792
 
793
793
  int slashes= 2;