perfschema.dml_threads w1 [ fail ]
|
Test ended at 2018-11-14 13:25:20
|
|
CURRENT_TEST: perfschema.dml_threads
|
mysqltest: At line 23: query 'update performance_schema.threads
|
set thread_id=12 where PROCESSLIST_ID=connection_id()' succeeded - should have failed with errno 1683...
|
|
The result from queries just before the failure was:
|
select * from performance_schema.threads
|
where name like 'Thread/%' limit 1;
|
select * from performance_schema.threads
|
where name='FOO';
|
insert into performance_schema.threads
|
set name='FOO', thread_id=1, processlist_id=2;
|
ERROR 42000: INSERT command denied to user 'root'@'localhost' for table 'threads'
|
update performance_schema.threads
|
set thread_id=12;
|
ERROR HY000: Invalid performance_schema usage
|
update performance_schema.threads
|
set thread_id=12 where PROCESSLIST_ID=connection_id();
|