~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_delete.cc

  • Committer: Brian Aker
  • Date: 2008-08-05 04:10:42 UTC
  • mfrom: (261.2.8 codestyle)
  • mto: This revision was merged to the branch mainline in revision 263.
  • Revision ID: brian@tangent.org-20080805041042-1l4893r3bwy2lxz2
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
    List<Item>   fields;
71
71
    List<Item>   all_fields;
72
72
 
73
 
    memset((char*) &tables, 0, sizeof(tables));
 
73
    memset(&tables, 0, sizeof(tables));
74
74
    tables.table = table;
75
75
    tables.alias = table_list->alias;
76
76
 
852
852
  uint path_length;
853
853
  
854
854
 
855
 
  memset((char*) &create_info, 0, sizeof(create_info));
 
855
  memset(&create_info, 0, sizeof(create_info));
856
856
  /* If it is a temporary table, close and regenerate it */
857
857
  if (!dont_send_ok && (table= find_temporary_table(thd, table_list)))
858
858
  {