~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/innodb_plugin_extras.h

  • Committer: Brian Aker
  • Date: 2008-10-20 04:28:21 UTC
  • mto: (492.3.21 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: brian@tangent.org-20081020042821-rqqdrccuu8195k3y
Second pass of thd cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
/**
31
31
  Create a LEX_STRING in this connection's local memory pool
32
32
 
33
 
  @param thd      user thread connection handle
 
33
  @param session      user thread connection handle
34
34
  @param lex_str  pointer to LEX_STRING object to be initialized
35
35
  @param str      initializer to be copied into lex_str
36
36
  @param size     length of str, in bytes
38
38
                              instead of using lex_str value
39
39
  @return  NULL on failure, or pointer to the LEX_STRING object
40
40
 
41
 
  @see thd_alloc()
 
41
  @see session_alloc()
42
42
*/
43
 
LEX_STRING *thd_make_lex_string(Session *thd, LEX_STRING *lex_str,
 
43
LEX_STRING *session_make_lex_string(Session *session, LEX_STRING *lex_str,
44
44
                                const char *str, unsigned int size,
45
45
                                int allocate_lex_string);
46
46