Fixed issues on compiling and linking the library against example and test

This commit is contained in:
Jan Lindström
2013-07-24 15:49:36 +03:00
parent 521a66f9c1
commit 2fc7cb5525
16 changed files with 699 additions and 283 deletions

View File

@ -24,6 +24,11 @@ Updated:
#ifndef TABLE_REPLICATION_METADATA_H
#define TABLE_REPLICATION_METADATA_H
namespace mysql {
namespace table_replication_metadata {
/* Structure definition for table replication oconsistency metadata */
typedef struct {
unsigned char* db_table; /* Fully qualified db.table name,
@ -65,6 +70,10 @@ tbrm_write_metadata(
metadata. */
size_t tbrm_rows); /*!< in: number of rows read */
#endif
} // table_replication_metadata
} // mysql
#endif