~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/create_replication.h

  • Committer: Brian Aker
  • Date: 2011-02-04 09:29:39 UTC
  • mfrom: (2139.3.6 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2144.
  • Revision ID: brian@tangent.org-20110204092939-nlwrimamw0fxxhgl
Main bit of this patch is that Inno now just uses the identifier so we only
have one spot to make changes for paths.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
#include "read_replication.h"
33
33
 
34
 
#include <drizzled/message/table.pb.h>
35
 
#include <drizzled/table.h>
36
 
#include <drizzled/charset_info.h>
37
 
 
38
34
struct read_replication_state_st {
39
35
  mtr_t mtr;
40
36
  btr_pcur_t pcur;
45
41
UNIV_INTERN ulint dict_create_sys_replication_log(void);
46
42
 
47
43
UNIV_INTERN ulint insert_replication_message(const char *message, size_t size, 
48
 
                                             trx_t *trx, uint64_t trx_id, 
49
 
                                             uint64_t end_timestamp, bool is_end_segment,
 
44
                                             trx_t *trx, uint64_t trx_id,
50
45
                                             uint32_t seg_id);
51
46
 
52
47
UNIV_INTERN struct read_replication_state_st *replication_read_init(void);
53
48
UNIV_INTERN void replication_read_deinit(struct read_replication_state_st *);
54
49
UNIV_INTERN struct read_replication_return_st replication_read_next(struct read_replication_state_st *);
55
50
 
56
 
UNIV_INTERN int read_replication_log_table_message(const char* table_name, drizzled::message::Table *table_message);
57
 
 
58
 
UNIV_INTERN void convert_to_mysql_format(byte* out, const byte* in, int len);
59
 
 
60
51
#endif