File: system_user_kill_query.result

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (42 lines) | stat: -rw-r--r-- 1,741 bytes parent folder | download
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
# Setup
CREATE USER sys_user, non_sys_user;
GRANT CONNECTION_ADMIN, SYSTEM_VARIABLES_ADMIN ON *.* TO non_sys_user;
GRANT SYSTEM_USER, CREATE, SELECT, INSERT, EXECUTE,SET_USER_ID,
SYSTEM_VARIABLES_ADMIN ON *.* TO sys_user;
#------------------------------------------------------------------------
# 1. User without SYSTEM_USER privilege cannot the kill query running
#    in the power session
#------------------------------------------------------------------------
SET DEBUG_SYNC= 'before_join_optimize SIGNAL in_sync WAIT_FOR continue';
PREPARE stmt FROM 'SELECT count(*) FROM t1,t2,t3,t4,t5 WHERE a1=a2 AND a2=a3 AND a3=a4 AND a4=a5  ';
EXECUTE stmt;
# Regular session should not be able to to kill the query running in
# power session.
SET DEBUG_SYNC= 'now WAIT_FOR in_sync';
KILL QUERY <CONNECTION_ID>;
ERROR HY000: You are not owner of thread <CONNECTION_ID>
SET DEBUG_SYNC= 'now SIGNAL continue';
count(*)
7
SET DEBUG_SYNC= 'before_join_optimize SIGNAL in_sync WAIT_FOR continue';
EXECUTE stmt;
# The running query cannot be killed by non_sys_user user
# even after revoking the SYSTEM_USER privilege from sys_user
REVOKE SYSTEM_USER ON *.* FROM sys_user;
SET DEBUG_SYNC= 'now WAIT_FOR in_sync';
KILL QUERY <CONNECTION_ID>;
ERROR HY000: You are not owner of thread <CONNECTION_ID>
SET DEBUG_SYNC= 'now SIGNAL continue';
count(*)
7
SET DEBUG_SYNC= 'before_join_optimize SIGNAL in_sync WAIT_FOR continue';
EXECUTE stmt;
# Another power_session should be able to kill the query.
SET DEBUG_SYNC= 'now WAIT_FOR in_sync';
KILL QUERY <CONNECTION_ID>;
SET DEBUG_SYNC= 'now SIGNAL continue';
# Verify that query was killed
ERROR 70100: Query execution was interrupted
SET DEBUG_SYNC = 'RESET';
# Test Cleanup
DROP USER sys_user, non_sys_user;