~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Brian Aker
  • Date: 2009-08-04 02:33:47 UTC
  • mto: (1108.2.1 merge)
  • mto: This revision was merged to the branch mainline in revision 1109.
  • Revision ID: brian@gaz-20090804023347-z0ciilv9f2exhlws
Removal multi-update/delete

Show diffs side-by-side

added added

removed removed

Lines of Context:
2688
2688
    break;
2689
2689
 
2690
2690
  case SQLCOM_UPDATE:
2691
 
  case SQLCOM_UPDATE_MULTI:
2692
2691
    replication_services.updateRecord(session, table, before_record, after_record);
2693
2692
    break;
2694
2693
 
2695
2694
  case SQLCOM_DELETE:
2696
 
  case SQLCOM_DELETE_MULTI:
2697
2695
    replication_services.deleteRecord(session, table);
2698
2696
    break;
2699
2697