~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table/instance/base.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-15 18:21:46 UTC
  • mto: This revision was merged to the branch mainline in revision 2408.
  • Revision ID: olafvdspek@gmail.com-20110815182146-1pg6jf39vwtff8o8
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
260
260
    return private_key_for_cache.size();
261
261
  }
262
262
 
263
 
private:
264
 
  void setPath(const char *str_arg, uint32_t size_arg)
265
 
  {
266
 
    path.assign(str_arg, size_arg);
267
 
  }
268
 
 
269
 
  void setNormalizedPath(char *str_arg, uint32_t size_arg)
270
 
  {
271
 
    normalized_path.assign(str_arg, size_arg);
272
 
  }
273
 
 
274
 
public:
275
263
  str_ref getTableNameRef() const
276
264
  {
277
265
    return table_name;