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.
16 lines
393 B
16 lines
393 B
5 months ago
|
--source include/windows.inc
|
||
|
|
||
|
|
||
|
--echo #
|
||
|
--echo # Bug #23747899: @@basedir sysvar value not normalized if set through
|
||
|
--echo # the command line/ini file
|
||
|
|
||
|
--echo # There should be no slashes in @@basedir and just backslashes
|
||
|
--echo # since it's normalized
|
||
|
SELECT
|
||
|
LOCATE('/', @@basedir) <> 0 AS have_slashes,
|
||
|
LOCATE('\\', @@basedir) <> 0 AS have_backslashes;
|
||
|
|
||
|
|
||
|
--echo End of the 5.6 tests
|