File: events_read_only.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 (286 lines) | stat: -rw-r--r-- 8,457 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
--echo #
--echo # Bug#31633859: IN GR ENVIRONMENT WITH POOR RESOURCES,
--echo #               EVENT_SCHEDULER DOSEN'T WORK PROPERLY.
--echo #
--echo

--echo # Set up.
--echo

# We need to have performance_schema.error_log to ourselves:
--source include/not_parallel.inc

--echo # Make sure performance_schema.error_log and session agree on the timezone.
SET @@session.time_zone=@@global.log_timestamps;

--echo # Find (timestamp of) most recent row in performance_schema.error_log:
SELECT FROM_UNIXTIME(VARIABLE_VALUE/1000000)
  INTO @pfs_errlog_latest
  FROM performance_schema.global_status
 WHERE VARIABLE_NAME LIKE "Error_log_latest_write";

--echo # Create a test-user that is not root.
CREATE USER 'user31633859'@'127.0.0.1';
GRANT SELECT, EVENT, RELOAD ON *.* TO 'user31633859'@'127.0.0.1';

--echo # Show that the event scheduler is running:
SELECT COUNT(thread_id)
  FROM performance_schema.threads
 WHERE name='thread/sql/event_scheduler';

--echo # Create an event.
CREATE DEFINER='user31633859'@'127.0.0.1' EVENT
  IF NOT EXISTS
  mysql.event31633859
  ON SCHEDULE EVERY 1 SECOND
  DO SET @dummy=1;

--echo # Create an environment where the event will fail.
SET @@global.offline_mode=ON;
SET @@global.super_read_only=ON;

--echo # Show that the event exists:
SELECT definer,event_name
  FROM information_schema.events
 WHERE event_schema='mysql'
   AND event_name='event31633859';

--echo # Wait till the event scheduler is no longer running:
let $wait_condition=
  SELECT COUNT(thread_id)=0 FROM performance_schema.threads WHERE name='thread/sql/event_scheduler';
--source include/wait_condition.inc

--echo # Show state of relevant configuration:
SELECT @@global.offline_mode;
SELECT @@global.super_read_only;

--echo # Show the error log entry for the failed event:
SELECT error_code,data
  FROM performance_schema.error_log
 WHERE error_code='MY-010045' AND logged>@pfs_errlog_latest;

--echo # Show that the event scheduler has stopped:
SELECT COUNT(thread_id)
  FROM performance_schema.threads
 WHERE name='thread/sql/event_scheduler';

--echo # Show that the scheduler is still switched on (indicating that the user
--echo # wishes for it to run, not that it's actually running):
SELECT @@global.event_scheduler;

--echo
--echo # Show that we now restart the scheduler when turning off SUPER_READ_ONLY.
--echo

SET @@global.super_read_only=OFF;

--echo # Wait till the event scheduler is running again:
let $wait_condition=
  SELECT COUNT(thread_id)>0 FROM performance_schema.threads WHERE name='thread/sql/event_scheduler';
--source include/wait_condition.inc

--echo # Show that the event scheduler is now running again:
SELECT COUNT(thread_id)>0 FROM performance_schema.threads WHERE name='thread/sql/event_scheduler';

--echo #
--echo # Bug#33539082: BUG#31633859 does not consider SET @@global.read_only=OFF
--echo #
--echo

--echo # Set up.
--echo

--echo # Find (timestamp of) most recent row in performance_schema.error_log:
SELECT FROM_UNIXTIME(VARIABLE_VALUE/1000000)
  INTO @pfs_errlog_latest
  FROM performance_schema.global_status
 WHERE VARIABLE_NAME LIKE "Error_log_latest_write";

--echo # Create an environment where the event (created for 31633859) will fail.
SET @@global.offline_mode=ON;
SET @@global.read_only=ON;
SET @@global.super_read_only=ON;

--echo # Wait till the event scheduler is no longer running:
let $wait_condition=
  SELECT COUNT(thread_id)=0 FROM performance_schema.threads WHERE name='thread/sql/event_scheduler';
--source include/wait_condition.inc

--echo # Show state of relevant configuration:
SELECT @@global.offline_mode;
SELECT @@global.super_read_only;
SELECT @@global.read_only;

--echo # Show the error log entry for the failed event:
SELECT error_code,data
  FROM performance_schema.error_log
 WHERE error_code='MY-010045' AND logged>@pfs_errlog_latest;

--echo # Show that the event scheduler has stopped:
SELECT COUNT(thread_id)
  FROM performance_schema.threads
 WHERE name='thread/sql/event_scheduler';

--echo # Show that the scheduler is still switched on (indicating that the user
--echo # wishes for it to run, not that it's actually running):
SELECT @@global.event_scheduler;

--echo
--echo # Show that we now restart the scheduler when turning off READ_ONLY.
--echo # (Turning off READ_ONLY implicitly unsets SUPER_READ_ONLY as well.)
--echo

SET @@global.read_only=OFF;

--echo # Wait till the event scheduler is running again:
let $wait_condition=
  SELECT COUNT(thread_id)>0 FROM performance_schema.threads WHERE name='thread/sql/event_scheduler';
--source include/wait_condition.inc

--echo # Show that the event scheduler is now running again:
SELECT COUNT(thread_id)>0 FROM performance_schema.threads WHERE name='thread/sql/event_scheduler';

--echo # Show state of relevant configuration:
SELECT @@global.offline_mode;
SELECT @@global.super_read_only;
SELECT @@global.read_only;

--echo
--echo # Clean up.
--echo

SET @@global.read_only=OFF;
SET @@global.offline_mode=OFF;

DROP EVENT mysql.event31633859;
DROP USER 'user31633859'@'127.0.0.1';


--echo #
--echo # Bug#33711304: Event Scheduler fails to restart after LOCK INSTANCE FOR BACKUP
--echo #

--echo
--echo # Set up.

--echo
--echo # Find (timestamp of) most recent row in performance_schema.error_log:
SELECT FROM_UNIXTIME(VARIABLE_VALUE/1000000)
  INTO @pfs_errlog_latest
  FROM performance_schema.global_status
 WHERE VARIABLE_NAME LIKE "Error_log_latest_write";

--echo
--echo # Create a test-user that is not root.
CREATE USER 'user33711304'@'127.0.0.1';
GRANT SELECT, EVENT, INSERT, RELOAD ON *.* TO 'user33711304'@'127.0.0.1';

--echo
--echo # Create test table for the event to write to.
CREATE table t1 (f1 INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, f2 TIMESTAMP);

--echo
--echo # Create an event.
CREATE DEFINER='user33711304'@'127.0.0.1' EVENT
  IF NOT EXISTS
  mysql.event33711304
  ON SCHEDULE EVERY 1 SECOND
  DO INSERT INTO test.t1 VALUES (NULL, CURRENT_TIMESTAMP);

--echo
--echo # Wait for event to run.
let $wait_timeout= 60;
let $wait_condition= SELECT COUNT(*)>0 FROM t1;
--source include/wait_condition.inc

--echo
--echo # Show that no scheduler failures have happened yet (should be empty).
SELECT error_code,data
  FROM performance_schema.error_log
 WHERE error_code='MY-010045' AND logged>@pfs_errlog_latest;

--echo
--echo # Show scheduler state (e.g. "Waiting for next activation").
SELECT PROCESSLIST_STATE
  FROM performance_schema.threads
 WHERE name='thread/sql/event_scheduler';

--echo
--echo # Create an environment where the event will fail.
LOCK INSTANCE FOR BACKUP;
FLUSH TABLES WITH READ LOCK;

--echo
--echo # Count rows in table.
SELECT COUNT(*) FROM t1 INTO @rows_before;
--echo # Should be non-empty ("1"):
SELECT @rows_before > 0;

--echo
--echo # Give event time to fire.
--echo # This will fail gracefully on very slow systems.
SELECT SLEEP(2);

--echo
--echo # Count rows in table (again).
SELECT COUNT(*) FROM t1 INTO @rows_after;

--echo
--echo # No new rows should have been added ("0"):
SELECT @rows_after - @rows_before;

--echo
--echo # Show that the scheduler has not failed.
SELECT error_code,data
  FROM performance_schema.error_log
 WHERE error_code='MY-010045' AND logged>@pfs_errlog_latest LIMIT 1;

--echo
--echo # Show scheduler state ("Waiting for global read lock")
SELECT PROCESSLIST_STATE
  FROM performance_schema.threads
 WHERE name='thread/sql/event_scheduler';

--echo
--echo # Unlock tables. Scheduler should restart.
UNLOCK INSTANCE;
UNLOCK TABLES;

--echo
--echo # Wait for event to run.
let $wait_timeout= 60;
let $wait_condition= SELECT (COUNT(*)-@rows_after)>0 FROM t1;
--source include/wait_condition.inc

--echo
--echo # Show that no error was recorded:
SELECT error_code,data
  FROM performance_schema.error_log
 WHERE error_code='MY-010045' AND logged>@pfs_errlog_latest;

--echo
--echo # Show that the event scheduler thread still exists.
SELECT COUNT(thread_id)
  FROM performance_schema.threads
 WHERE name='thread/sql/event_scheduler';

--echo
--echo # Show scheduler state ("Waiting for next activation")
SELECT PROCESSLIST_STATE
  FROM performance_schema.threads
 WHERE name='thread/sql/event_scheduler';

--echo
--echo # Show that the scheduler is still switched on (indicating that the user
--echo # wishes for it to run, not that it's actually running):
SELECT @@global.event_scheduler;

--echo
--echo # Clean up.
--echo

DROP EVENT mysql.event33711304;
DROP TABLE t1;
DROP USER 'user33711304'@'127.0.0.1';

--echo # Done.