~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_plugin.h

  • Committer: Brian Aker
  • Date: 2009-03-25 22:03:13 UTC
  • mfrom: (960.2.47 mordred)
  • Revision ID: brian@tangent.org-20090325220313-fffae098oufxiaqg
Merge of Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
  struct st_plugin_dl *plugin_dl;
98
98
  uint32_t state;
99
99
  uint32_t ref_count;               /* number of threads using the plugin */
100
 
  void *data;                   /* plugin type specific, e.g. handlerton */
 
100
  void *data;                   /* plugin type specific, e.g. StorageEngine */
101
101
  MEM_ROOT mem_root;            /* memory for dynamic plugin structures */
102
102
  sys_var *system_vars;         /* server variables for this plugin */
103
103
};