File: gtid_executed_compression_period_basic.test

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 (77 lines) | stat: -rw-r--r-- 2,490 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
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
################################################################################
# gtid_executed_compression_period
#
# It is a global variable only and can be set dynamically.
# It has UINT type and accepts numbers from 0 to 4294967295. Default value is 1000.
#
# This test verifies the variable can be set, selected and showed correctly.
################################################################################

SET @start_global_value = @@global.gtid_executed_compression_period;
SELECT @start_global_value;

--echo #
--echo # It exists as a global variable
--echo #
SELECT @@GLOBAL.gtid_executed_compression_period;

SHOW GLOBAL VARIABLES LIKE 'gtid_executed_compression_period';

--disable_warnings
SELECT * FROM performance_schema.global_variables WHERE
  VARIABLE_NAME = 'gtid_executed_compression_period';
--enable_warnings

--echo #
--echo # It is not a session variable
--echo #
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
SELECT @@SESSION.gtid_executed_compression_period;

--error ER_GLOBAL_VARIABLE
SET SESSION gtid_executed_compression_period= 2;
SHOW SESSION VARIABLES LIKE 'gtid_executed_compression_period';

SHOW SESSION VARIABLES LIKE 'gtid_executed_compression_period';

--disable_warnings
SELECT * FROM performance_schema.session_variables WHERE
  VARIABLE_NAME ='gtid_executed_compression_period';
--enable_warnings

--echo #
--echo # Verify that it's writable
--echo #
SET GLOBAL gtid_executed_compression_period= 0;
SELECT @@GLOBAL.gtid_executed_compression_period;

SET GLOBAL gtid_executed_compression_period= 5000;
SELECT @@GLOBAL.gtid_executed_compression_period;

SET GLOBAL gtid_executed_compression_period= 4294967295;
SELECT @@GLOBAL.gtid_executed_compression_period;


--echo #
--echo # Verify that it could not bet set with invalid values
--echo #

# Allowed value range: (0, UINT_MAX32)
# Value lower than allowed range
SET GLOBAL gtid_executed_compression_period= -1;
SELECT @@GLOBAL.gtid_executed_compression_period;

# Value higher than allowed range
SET GLOBAL gtid_executed_compression_period= 4294967296;
SELECT @@GLOBAL.gtid_executed_compression_period;

# Incompatible value types
--error ER_WRONG_TYPE_FOR_VAR
set global gtid_executed_compression_period= 1.1;
--error ER_WRONG_TYPE_FOR_VAR
set global gtid_executed_compression_period= 1e1;
--error ER_WRONG_TYPE_FOR_VAR
set global gtid_executed_compression_period= "foobar";

SET @@global.gtid_executed_compression_period= @start_global_value;
SELECT @@global.gtid_executed_compression_period;