@@ -2,7 +2,7 @@ SET DEBUG_SYNC= 'RESET';
22DROP TABLE IF EXISTS t1;
33SHOW VARIABLES LIKE 'DEBUG_SYNC';
44Variable_name Value
5- debug_sync ON - current signal : ''
5+ debug_sync ON - signals : ''
66SET DEBUG_SYNC='p0 SIGNAL s1 WAIT_FOR s2 TIMEOUT 6 EXECUTE 2 HIT_LIMIT 3';
77SET DEBUG_SYNC='p0 SIGNAL s1 WAIT_FOR s2 TIMEOUT 6 EXECUTE 2';
88SET DEBUG_SYNC='p0 SIGNAL s1 WAIT_FOR s2 TIMEOUT 6 HIT_LIMIT 3';
@@ -150,34 +150,34 @@ SET @myvar= 'now SIGNAL from_myvar';
150150SET DEBUG_SYNC= @myvar;
151151SHOW VARIABLES LIKE 'DEBUG_SYNC';
152152Variable_name Value
153- debug_sync ON - current signal : 'from_myvar'
153+ debug_sync ON - signals : 'from_myvar'
154154SET DEBUG_SYNC= LEFT('now SIGNAL from_function_cut_here', 24);
155155SHOW VARIABLES LIKE 'DEBUG_SYNC';
156156Variable_name Value
157- debug_sync ON - current signal : 'from_function'
157+ debug_sync ON - signals : 'from_function,from_myvar '
158158SET DEBUG_SYNC= 'now SIGNAL something';
159159SHOW VARIABLES LIKE 'DEBUG_SYNC';
160160Variable_name Value
161- debug_sync ON - current signal : 'something'
161+ debug_sync ON - signals : 'from_function,from_myvar, something'
162162SET DEBUG_SYNC= 'now WAIT_FOR nothing TIMEOUT 0';
163163Warnings:
164164Warning #### debug sync point wait timed out
165165SET DEBUG_SYNC= 'now SIGNAL nothing';
166166SHOW VARIABLES LIKE 'DEBUG_SYNC';
167167Variable_name Value
168- debug_sync ON - current signal : 'nothing'
168+ debug_sync ON - signals : 'from_function,from_myvar, nothing,something '
169169SET DEBUG_SYNC= 'now WAIT_FOR nothing TIMEOUT 0';
170170SET DEBUG_SYNC= 'now SIGNAL something EXECUTE 0';
171171SHOW VARIABLES LIKE 'DEBUG_SYNC';
172172Variable_name Value
173- debug_sync ON - current signal : 'nothing '
173+ debug_sync ON - signals : 'from_function,from_myvar,something '
174174SET DEBUG_SYNC= 'now WAIT_FOR anotherthing TIMEOUT 0 EXECUTE 0';
175175SET DEBUG_SYNC= 'now HIT_LIMIT 1';
176176ERROR HY000: debug sync point hit limit reached
177177SET DEBUG_SYNC= 'RESET';
178178SHOW VARIABLES LIKE 'DEBUG_SYNC';
179179Variable_name Value
180- debug_sync ON - current signal : ''
180+ debug_sync ON - signals : ''
181181SET DEBUG_SYNC= 'p1abcd SIGNAL s1 EXECUTE 2';
182182SET DEBUG_SYNC= 'p2abc SIGNAL s2 EXECUTE 2';
183183SET DEBUG_SYNC= 'p9abcdef SIGNAL s9 EXECUTE 2';
@@ -190,23 +190,23 @@ SET DEBUG_SYNC= 'p3abcdef SIGNAL s3 EXECUTE 2';
190190SET DEBUG_SYNC= 'p4a TEST';
191191SHOW VARIABLES LIKE 'DEBUG_SYNC';
192192Variable_name Value
193- debug_sync ON - current signal : 's4'
193+ debug_sync ON - signals : 's4'
194194SET DEBUG_SYNC= 'p1abcd TEST';
195195SHOW VARIABLES LIKE 'DEBUG_SYNC';
196196Variable_name Value
197- debug_sync ON - current signal : 's1'
197+ debug_sync ON - signals : 's1,s4 '
198198SET DEBUG_SYNC= 'p7 TEST';
199199SHOW VARIABLES LIKE 'DEBUG_SYNC';
200200Variable_name Value
201- debug_sync ON - current signal : 's7'
201+ debug_sync ON - signals : 's1,s4, s7'
202202SET DEBUG_SYNC= 'p9abcdef TEST';
203203SHOW VARIABLES LIKE 'DEBUG_SYNC';
204204Variable_name Value
205- debug_sync ON - current signal : 's9'
205+ debug_sync ON - signals : 's1,s4,s7, s9'
206206SET DEBUG_SYNC= 'p3abcdef TEST';
207207SHOW VARIABLES LIKE 'DEBUG_SYNC';
208208Variable_name Value
209- debug_sync ON - current signal : 's3 '
209+ debug_sync ON - signals : 's1,s3,s4,s7,s9 '
210210SET DEBUG_SYNC= 'p1abcd CLEAR';
211211SET DEBUG_SYNC= 'p2abc CLEAR';
212212SET DEBUG_SYNC= 'p5abcde CLEAR';
@@ -219,19 +219,19 @@ SET DEBUG_SYNC= 'p7 CLEAR';
219219SET DEBUG_SYNC= 'p1abcd TEST';
220220SHOW VARIABLES LIKE 'DEBUG_SYNC';
221221Variable_name Value
222- debug_sync ON - current signal : 's3 '
222+ debug_sync ON - signals : 's1,s3,s4,s7,s9 '
223223SET DEBUG_SYNC= 'p7 TEST';
224224SHOW VARIABLES LIKE 'DEBUG_SYNC';
225225Variable_name Value
226- debug_sync ON - current signal : 's3 '
226+ debug_sync ON - signals : 's1,s3,s4,s7,s9 '
227227SET DEBUG_SYNC= 'p9abcdef TEST';
228228SHOW VARIABLES LIKE 'DEBUG_SYNC';
229229Variable_name Value
230- debug_sync ON - current signal : 's3 '
230+ debug_sync ON - signals : 's1,s3,s4,s7,s9 '
231231SET DEBUG_SYNC= 'RESET';
232232SHOW VARIABLES LIKE 'DEBUG_SYNC';
233233Variable_name Value
234- debug_sync ON - current signal : ''
234+ debug_sync ON - signals : ''
235235CREATE USER mysqltest_1@localhost;
236236GRANT SUPER ON *.* TO mysqltest_1@localhost;
237237connection con1, mysqltest_1
0 commit comments