mirror of
https://github.com/MariaDB/server.git
synced 2025-05-05 16:59:35 +03:00
support encrypted binlogs. Not decryption, but at least recognizing that event are encrypted and prining them as such
7 lines
129 B
Plaintext
7 lines
129 B
Plaintext
RESET MASTER;
|
|
CREATE TABLE t1 (a INT);
|
|
INSERT INTO t1 VALUES (1),(2),(3);
|
|
REPLACE INTO t1 VALUES (4);
|
|
DROP TABLE t1;
|
|
FLUSH LOGS;
|