~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

Merged with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1286
1286
  Session *session;
1287
1287
  virtual_column_info *vcol_info;
1288
1288
 
1289
 
  /* maintain a list of used plugins for this LEX */
1290
 
  DYNAMIC_ARRAY plugins;
1291
 
  plugin_ref plugins_static_buffer[INITIAL_LEX_PLUGIN_LIST_SIZE];
1292
 
 
1293
1289
  const CHARSET_INFO *charset;
1294
1290
  bool text_string_is_7bit;
1295
1291
  /* store original leaf_tables for INSERT SELECT and PS/SP */
1419
1415
  virtual ~LEX()
1420
1416
  {
1421
1417
    destroy_query_tables_list();
1422
 
    plugin_unlock_list(NULL, (plugin_ref *)plugins.buffer, plugins.elements);
1423
 
    delete_dynamic(&plugins);
1424
1418
  }
1425
1419
 
1426
1420
  TableList *unlink_first_table(bool *link_to_local);