~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/multi_update.h

  • Committer: Brian Aker
  • Date: 2009-05-05 00:40:45 UTC
  • mfrom: (1003.2.7 mordred)
  • Revision ID: brian@gaz-20090505004045-yns4biv63thufj1b
Tags: 2009.05.1005
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_MULTI_UPDATE_H
22
22
#define DRIZZLED_MULTI_UPDATE_H
23
23
 
 
24
#include <list>
24
25
 
25
26
class multi_update :public select_result_interceptor
26
27
{
27
28
  TableList *all_tables; /* query/update command tables */
28
29
  TableList *leaves;     /* list of leves of join table tree */
29
 
  TableList *update_tables, *table_being_updated;
 
30
  std::list<TableList*> update_tables;
 
31
  TableList *table_being_updated;
30
32
  Table **tmp_tables, *main_table, *table_to_update;
31
33
  Tmp_Table_Param *tmp_table_param;
32
34
  ha_rows updated, found;