1# 2# Bug #23747899: @@basedir sysvar value not normalized if set through 3# the command line/ini file 4# There should be no slashes in @@basedir and just backslashes 5# since it's normalized 6SELECT 7LOCATE('/', @@basedir) <> 0 AS have_slashes, 8LOCATE('\\', @@basedir) <> 0 AS have_backslashes; 9have_slashes have_backslashes 100 1 11End of the 5.6 tests 12