~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_share.h

  • Committer: Brian Aker
  • Date: 2009-07-23 00:02:03 UTC
  • mfrom: (1093.1.25 captain)
  • Revision ID: brian@gaz-20090723000203-kkrx4udjiiwy869o
Mege Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
#include <string>
27
27
 
28
 
using namespace std;
29
28
 
30
29
class TableShare
31
30
{
325
324
    Length of key
326
325
  */
327
326
 
328
 
  static inline uint32_t createKey(char *key, string& db_arg, string& table_name_arg)
 
327
  static inline uint32_t createKey(char *key, std::string& db_arg,
 
328
                                   std::string& table_name_arg)
329
329
  {
330
330
    return createKey(key, db_arg.c_str(), table_name_arg.c_str());
331
331
  }