~gl-az/percona-xtrabackup/2.1-encrypted_stream

« back to all changes in this revision

Viewing changes to src/write_filt.h

  • Committer: jenkins at percona
  • Date: 2013-01-22 01:23:45 UTC
  • mfrom: (477.1.1 compact-backups)
  • Revision ID: jenkins@jenkins.percona.com-20130122012345-ujoqhdcv13aa2l3e
MergeĀ lp:~akopytov/percona-xtrabackup/compact-backups

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
#include "fil_cur.h"
29
29
#include "datasink.h"
 
30
#include "compact.h"
30
31
 
31
32
/* Incremental page filter context */
32
33
typedef struct {
35
36
        ulint            npages;
36
37
} xb_wf_incremental_ctxt_t;
37
38
 
38
 
/* Compact page filter context */
39
 
typedef struct {
40
 
        my_bool skip;
41
 
} xb_wf_compact_ctxt_t;
42
 
 
43
39
/* Page filter context used as an opaque structure by callers */
44
40
typedef struct {
45
41
        xb_fil_cur_t    *cursor;