mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 09:14:17 +01:00
16 lines
356 B
C
16 lines
356 B
C
|
#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
|