summaryrefslogtreecommitdiff
path: root/mysql-test/suite/perfschema/t/dml_setup_actors.test
blob: 4d39ef3cb2e91a37b23367b24e06715c3715886a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Tests for PERFORMANCE_SCHEMA

--source include/not_embedded.inc
--source include/have_perfschema.inc

--disable_warnings
drop table if exists test.setup_actors;
--enable_warnings

# Save the setup
create table test.setup_actors as
  select * from performance_schema.setup_actors;
truncate table performance_schema.setup_actors;

select * from performance_schema.setup_actors;

select * from performance_schema.setup_actors
  where user = '%';

insert into performance_schema.setup_actors
  set user='Joe', host='localhost';

insert into performance_schema.setup_actors
  set user='Joe', host='%';

insert into performance_schema.setup_actors
  set user='%', host='server1';

insert into performance_schema.setup_actors
  set user='%', host='%';

select * from performance_schema.setup_actors
  order by USER, HOST;

--error ER_WRONG_PERFSCHEMA_USAGE
update performance_schema.setup_actors
  set user='ILLEGAL';

--error ER_WRONG_PERFSCHEMA_USAGE
update performance_schema.setup_actors
  set host='ILLEGAL';

--error ER_WRONG_PERFSCHEMA_USAGE
update performance_schema.setup_actors
  set role='ILLEGAL';

select * from performance_schema.setup_actors
  order by USER, HOST;

delete from performance_schema.setup_actors
  where user = 'Joe' and host = 'localhost';

select * from performance_schema.setup_actors
  order by USER, HOST;

delete from performance_schema.setup_actors;

select * from performance_schema.setup_actors
  order by USER, HOST;

LOCK TABLES performance_schema.setup_actors READ;
UNLOCK TABLES;

LOCK TABLES performance_schema.setup_actors WRITE;
UNLOCK TABLES;

# Restore the setup
truncate table performance_schema.setup_actors;
insert into performance_schema.setup_actors
  select * from test.setup_actors;
drop table test.setup_actors;

--echo #
--echo # MDEV-25325 column_comment for performance_schema tables
--echo #
select column_name, column_comment 
from information_schema.columns 
where table_schema='performance_schema' and table_name='setup_actors';