~ubuntu-branches/ubuntu/vivid/mariadb-5.5/vivid

« back to all changes in this revision

Viewing changes to storage/tokudb/ha_tokudb.h

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2014-11-14 21:04:24 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20141114210424-xlyna0ozl11647o5
Tags: 5.5.40-0ubuntu0.14.10.1
* SECURITY UPDATE: Update to 5.5.40 to fix security issues (LP: #1391676)
  - CVE-2014-6507
  - CVE-2014-6491
  - CVE-2014-6500
  - CVE-2014-6469
  - CVE-2014-6555
  - CVE-2014-6559
  - CVE-2014-6494
  - CVE-2014-6496
  - CVE-2014-6464
* Add bsdutils as mariadb-server dependency like upstream does in 5.5.40.

Show diffs side-by-side

added added

removed removed

Lines of Context:
251
251
    uint64_t bulk_fetch_iteration;
252
252
    uint64_t rows_fetched_using_bulk_fetch;
253
253
    bool doing_bulk_fetch;
 
254
    bool maybe_index_scan;
254
255
 
255
256
    //
256
257
    // buffer used to temporarily store a "packed key" 
796
797
private:
797
798
    int do_optimize(THD *thd);
798
799
    int map_to_handler_error(int error);
 
800
 
 
801
public:
 
802
    void rpl_before_write_rows();
 
803
    void rpl_after_write_rows();
 
804
    void rpl_before_delete_rows();
 
805
    void rpl_after_delete_rows();
 
806
    void rpl_before_update_rows();
 
807
    void rpl_after_update_rows();
 
808
    bool rpl_lookup_rows();
 
809
private:
 
810
    bool in_rpl_write_rows;
 
811
    bool in_rpl_delete_rows;
 
812
    bool in_rpl_update_rows;
799
813
};
800
814
 
801
815
#if TOKU_INCLUDE_OPTION_STRUCTS