~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_update.cc

  • Committer: Brian Aker
  • Date: 2009-02-08 03:02:04 UTC
  • Revision ID: brian@tangent.org-20090208030204-3gz6xwcq5niux5nm
Class rewrite of Session (aka get all of the junk out)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1060
1060
  update_tables= (TableList*) update.first;
1061
1061
 
1062
1062
  tmp_tables = (Table**) session->calloc(sizeof(Table *) * table_count);
1063
 
  tmp_table_param = (TMP_TABLE_PARAM*) session->calloc(sizeof(TMP_TABLE_PARAM) *
 
1063
  tmp_table_param = (Tmp_Table_Param*) session->calloc(sizeof(Tmp_Table_Param) *
1064
1064
                                                   table_count);
1065
1065
  fields_for_table= (List_item **) session->alloc(sizeof(List_item *) *
1066
1066
                                              table_count);
1190
1190
    uint32_t cnt= table_ref->shared;
1191
1191
    List<Item> temp_fields;
1192
1192
    order_st     group;
1193
 
    TMP_TABLE_PARAM *tmp_param;
 
1193
    Tmp_Table_Param *tmp_param;
1194
1194
 
1195
1195
    table->mark_columns_needed_for_update();
1196
1196
    if (ignore)