~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_delete.cc

  • Committer: Monty Taylor
  • Date: 2008-07-09 15:52:52 UTC
  • mto: (77.6.1 glibclient-merge)
  • mto: This revision was merged to the branch mainline in revision 112.
  • Revision ID: monty@inaugust.com-20080709155252-lnzmxxje1g40z3a7
Warning fixes. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
505
505
 
506
506
 
507
507
int
508
 
multi_delete::prepare(List<Item> &values, SELECT_LEX_UNIT *u)
 
508
multi_delete::prepare(List<Item> &values __attribute__((__unused__)),
 
509
                      SELECT_LEX_UNIT *u)
509
510
{
510
511
  
511
512
  unit= u;
600
601
}
601
602
 
602
603
 
603
 
bool multi_delete::send_data(List<Item> &values)
 
604
bool multi_delete::send_data(List<Item> &values __attribute__((__unused__)))
604
605
{
605
606
  int secure_counter= delete_while_scanning ? -1 : 0;
606
607
  TABLE_LIST *del_table;