~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.h

  • Committer: Olaf van der Spek
  • Date: 2011-06-21 14:08:41 UTC
  • mto: This revision was merged to the branch mainline in revision 2346.
  • Revision ID: olafvdspek@gmail.com-20110621140841-b6gc81018n00819r
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
338
338
    return mem_root.alloc_root(arg);
339
339
  }
340
340
 
341
 
  char *strmake_root(const char *str_arg, size_t len_arg)
 
341
  char *strmake(const char *str_arg, size_t len_arg)
342
342
  {
343
343
    if (not mem_root.alloc_root_inited())
344
344
    {
345
345
      init_mem_root();
346
346
    }
347
347
 
348
 
    return mem_root.strmake_root(str_arg, len_arg);
 
348
    return mem_root.strmake(str_arg, len_arg);
349
349
  }
350
350
 
351
351
  filesort_info sort;