Files
tms-arch-linux-calamares-in…/archiso/airootfs/usr/local/mysql-5.6.47-linux-glibc2.12-x86_64/mysql-test/t/variables-win.test
2025-11-23 15:33:54 +08:00

16 lines
393 B
Plaintext
Executable File

--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