File: mysqldump_single_trans_min_privs.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,382 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
# Create the test database
CREATE DATABASE bug_test;
USE bug_test;
# Create the test table
CREATE TABLE bug(n INT);
# Enter random data which could be dumped
INSERT INTO bug VALUES(10);
INSERT INTO bug VALUES(20);
INSERT INTO bug VALUES(30);
# Create the test user
CREATE USER test@localhost;
# Grant only SELECT privilege on the test database
GRANT SELECT ON bug_test.* TO test@localhost;
SHOW GRANTS FOR test@localhost;
Grants for test@localhost
GRANT USAGE ON *.* TO `test`@`localhost`
GRANT SELECT ON `bug_test`.* TO `test`@`localhost`
# Create the dump file
# Start the dump tests
# ----- Test 1 -----
# GTID enabled on the server, --set-gtid-purged is set to it's default value (AUTO).
# Should fail because of insufficient privileges.
# Start the dump
# ----- Test 1 succeeded -----
# ----- Test 2 -----
# GTID enabled on the server, --set-gtid-purged is set to OFF
# Should succeed
# ----- Test 2 succeeded -----
# ----- Test 3 -----
# Increase the privileges of test user by granting RELOAD privilege
GRANT RELOAD ON *.* TO test@localhost;
SHOW GRANTS FOR test@localhost;
Grants for test@localhost
GRANT RELOAD ON *.* TO `test`@`localhost`
GRANT SELECT ON `bug_test`.* TO `test`@`localhost`
# Start the dump with --set-gtid-purged=ON
# Should succeed
# ----- Test 3 succeeded -----
# ----- End of tests -----
DROP USER test@localhost;
DROP DATABASE bug_test;
RESET MASTER;