~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/system_variables.h

  • Committer: Brian Aker
  • Date: 2011-03-28 02:46:21 UTC
  • Revision ID: brian@tangent.org-20110328024621-wtkdtlvdplqm0ybf
Shift CHARSET_INFO to charset_info_st

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
  plugin::StorageEngine *storage_engine;
80
80
 
81
81
  /* Only charset part of these variables is sensible */
82
 
  const CHARSET_INFO  *character_set_filesystem;
 
82
  const charset_info_st  *character_set_filesystem;
83
83
 
84
84
  /* Both charset and collation parts of these variables are important */
85
 
  const CHARSET_INFO    *collation_server;
 
85
  const charset_info_st *collation_server;
86
86
 
87
 
  inline const CHARSET_INFO  *getCollation(void) 
 
87
  inline const charset_info_st  *getCollation(void) 
88
88
  {
89
89
    return collation_server;
90
90
  }