You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
316 B
13 lines
316 B
#
|
|
# Bug#26331795: CRASH WHEN SETTING LOG_ERROR_SERVICES TO NULL
|
|
#
|
|
|
|
# this should throw a warning:
|
|
SET GLOBAL log_error_services='';
|
|
# this should throw an error:
|
|
--error ER_WRONG_VALUE_FOR_VAR
|
|
SET GLOBAL log_error_services=NULL;
|
|
# clean up
|
|
SET GLOBAL log_error_services=DEFAULT;
|
|
|
|
SELECT @@global.log_error_services;
|
|
|