mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
14 lines
425 B
Text
14 lines
425 B
Text
SELECT sys.format_path(NULL);
|
|
sys.format_path(NULL)
|
|
NULL
|
|
SET @mypath := CONCAT(@@global.datadir, 'foo/bar.foo');
|
|
SELECT sys.format_path(@mypath);
|
|
sys.format_path(@mypath)
|
|
@@datadir/foo/bar.foo
|
|
SET @mypath := CONCAT(@@global.tmpdir, '/foo/bar.foo');
|
|
SELECT sys.format_path(@mypath);
|
|
sys.format_path(@mypath)
|
|
@@tmpdir/foo/bar.foo
|
|
SELECT sys.format_path('/foo/bar/baz.foo');
|
|
sys.format_path('/foo/bar/baz.foo')
|
|
/foo/bar/baz.foo
|