File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
mysql-test/suite/plugins/r Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ select plugin_status from information_schema.plugins where plugin_name='feedback
22plugin_status
33ACTIVE
44SELECT variable_value INTO @feedback_used FROM information_schema.feedback where variable_name = 'FEEDBACK used';
5- SELECT variable_value = @feedback_used + 1 FROM information_schema.feedback where variable_name = 'FEEDBACK used';
6- variable_value = @feedback_used + 1
7- 0
5+ SELECT variable_value = @feedback_used + 1 as 'MUST BE 1' FROM information_schema.feedback where variable_name = 'FEEDBACK used';
6+ MUST BE 1
7+ 1
88select * from information_schema.feedback where variable_name like 'feed%'
99 and variable_name not like '%_uid' and variable_name not like 'FEEDBACK used'
1010 and variable_name not like '%debug%';
You can’t perform that action at this time.
0 commit comments