~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/semi_join_table.cc

  • Committer: Brian Aker
  • Date: 2009-07-11 19:23:04 UTC
  • mfrom: (1089.1.14 merge)
  • Revision ID: brian@gaz-20090711192304-ootijyl5yf9jq9kd
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
317
317
  table->free_tmp_table(session);                    /* purecov: inspected */
318
318
  return NULL;        /* purecov: inspected */
319
319
}
 
320
 
 
321
/*
 
322
  SemiJoinDuplicateElimination: Reset the temporary table
 
323
*/
 
324
int SemiJoinTable::reset()
 
325
{
 
326
  if (tmp_table)
 
327
    return tmp_table->file->ha_delete_all_rows();
 
328
 
 
329
  return 0;
 
330
}
 
331