~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

Removed some plugin loading cruft.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1728
1728
}
1729
1729
 
1730
1730
 
1731
 
extern "C"
1732
 
LEX_STRING *session_make_lex_string(Session *session, LEX_STRING *lex_str,
1733
 
                                const char *str, unsigned int size,
1734
 
                                int allocate_lex_string)
1735
 
{
1736
 
  return session->make_lex_string(lex_str, str, size,
1737
 
                              (bool) allocate_lex_string);
1738
 
}
1739
 
 
1740
1731
const struct charset_info_st *session_charset(Session *session)
1741
1732
{
1742
1733
  return(session->charset());