summaryrefslogtreecommitdiffstats
path: root/extra/mariabackup/ddl_log.h
blob: 5cac3e5dcfc09d312ef69051a11e618cdd46aab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
#include "my_global.h"
#include "datasink.h"
#include "aria_backup_client.h"
#include <string>
#include <memory>
#include <vector>
#include <unordered_map>

namespace ddl_log {

typedef std::unordered_map<std::string, std::string> tables_t;
bool backup(const char *datadir_path, ds_ctxt_t *ds, const tables_t &tables);

} // namespace ddl_log