diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-09-02 09:58:08 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-09-04 10:33:55 +0200 |
commit | b85a00161e91080cb82b99e812c18eafb6467737 (patch) | |
tree | 3b502db8d25f0eb0a93901e3417d097626ecf8ea /client | |
parent | 41d68cabee1d9c2a8e8c7a006b17070392a85ed7 (diff) | |
download | mariadb-git-b85a00161e91080cb82b99e812c18eafb6467737.tar.gz |
MDEV-8264 encryption for binlog
* Start_encryption_log_event
* --encrypt-binlog command line option
based on google patches.
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqlbinlog.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/mysqlbinlog.cc b/client/mysqlbinlog.cc index 3b4cfb8f993..587e5389860 100644 --- a/client/mysqlbinlog.cc +++ b/client/mysqlbinlog.cc @@ -2575,6 +2575,11 @@ void *sql_alloc(size_t size) return alloc_root(&s_mem_root, size); } +struct encryption_service_st encryption_handler= +{ + 0, 0, 0, 0, 0, 0, 0 +}; + /* We must include this here as it's compiled with different options for the server |