1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-8032 [PATCH] audit plugin - csv output broken.

Symbols like TAB or NEWLINE should be escaped, which was
        forgotten in one place.
This commit is contained in:
Alexey Botchkov
2015-06-06 19:12:44 +05:00
parent 6264451f25
commit db0ecf2662
3 changed files with 11 additions and 0 deletions

View File

@ -35,6 +35,9 @@ insert into t2 values (1), (2);
select * from t2;
alter table t1 rename renamed_t1;
set global server_audit_events='connect,query';
select 1,
2,
3;
insert into t2 values (1), (2);
select * from t2;
--error ER_NO_SUCH_TABLE