~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/row/row0purge.c

  • Committer: Stewart Smith
  • Date: 2010-12-03 06:20:46 UTC
  • mto: (2021.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1986.
  • Revision ID: stewart@flamingspork.com-20101203062046-kx5mp6pinsh19vh8
undo fix that ,well, wasn't

Show diffs side-by-side

added added

removed removed

Lines of Context:
796
796
        que_thr_t*      thr)    /*!< in: query thread */
797
797
{
798
798
        purge_node_t*   node;
799
 
#ifdef UNIV_DEBUG
800
799
        ulint           err;
801
 
#endif /* UNIV_DEBUG */
802
800
 
803
801
        ut_ad(thr);
804
802
 
806
804
 
807
805
        ut_ad(que_node_get_type(node) == QUE_NODE_PURGE);
808
806
 
809
 
#ifdef UNIV_DEBUG
810
 
        err =
811
 
#endif /* UNIV_DEBUG */
812
 
        row_purge(node, thr);
 
807
        err = row_purge(node, thr);
813
808
 
814
809
        ut_a(err == DB_SUCCESS);
815
810