blob: 109385efb9b628c9ab6abbe3def3f2f6a45d9e8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef MYGRATE_MARIADB_REPL_H
#define MYGRATE_MARIADB_REPL_H
// This file exists because mariadb_rpl.h alone fails as it's missing dependencies
#include <cstddef>
#include <mysql.h>
#include <mariadb_rpl.h>
#endif
|