~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_delete.cc

  • Committer: Brian Aker
  • Date: 2009-05-22 23:10:48 UTC
  • mto: This revision was merged to the branch mainline in revision 1037.
  • Revision ID: brian@gaz-20090522231048-q7ps3k08u1n13m9s
Increase the default sort buffer size.

Show diffs side-by-side

added added

removed removed

Lines of Context:
383
383
  Delete multiple tables from join
384
384
***************************************************************************/
385
385
 
386
 
#define MEM_STRIP_BUF_SIZE current_session->variables.sortbuff_size
387
 
 
388
386
extern "C" int refpos_order_cmp(void* arg, const void *a,const void *b)
389
387
{
390
388
  handler *file= (handler*)arg;
536
534
    *tempfiles_ptr++= new Unique (refpos_order_cmp,
537
535
                                  (void *) table->file,
538
536
                                  table->file->ref_length,
539
 
                                  MEM_STRIP_BUF_SIZE);
 
537
                                  current_session->variables.sortbuff_size);
540
538
  }
541
539
  return(session->is_fatal_error != 0);
542
540
}