1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

MDEV-4564 ALTER on a temporary table generates an audit event

This commit is contained in:
Sergei Golubchik
2013-06-07 10:02:50 +02:00
parent 3bc814beda
commit 6625fad8ca
3 changed files with 14 additions and 5 deletions

View File

@@ -38,6 +38,7 @@ drop view v1;
create temporary table t2 (a date);
insert t2 values ('2020-10-09');
select * from t2;
alter table t2 add column b int; # MDEV-4565 ALTER on a temporary table generates an audit event
drop table t2;
# internal temp table generates no audit events