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

12 lines
347 B
Plaintext
Executable File

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