Current Path : /usr/opt/mysql57/mysql-test/suite/sysschema/r/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/opt/mysql57/mysql-test/suite/sysschema/r/fn_format_path.result |
SELECT sys.format_path(NULL); sys.format_path(NULL) NULL SET @mypath := CONCAT(@@global.basedir, 'logs/binlog.000001'); SELECT sys.format_path(@mypath); sys.format_path(@mypath) @@basedir/logs/binlog.000001 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 SET @mypath := CONCAT(@@global.innodb_data_home_dir, '/foo/bar.ibd'); SELECT sys.format_path(@mypath); sys.format_path(@mypath) @@innodb_data_home_dir/foo/bar.ibd SET @mypath := CONCAT(@@global.innodb_log_group_home_dir, '/ib_logfile0'); SELECT sys.format_path(@mypath); sys.format_path(@mypath) @@innodb_log_group_home_dir/ib_logfile0 SET @mypath := CONCAT(@@global.innodb_undo_directory, '/undo0'); SELECT sys.format_path(@mypath); sys.format_path(@mypath) @@innodb_undo_directory/undo0 SELECT sys.format_path('/foo/bar/baz.foo'); sys.format_path('/foo/bar/baz.foo') /foo/bar/baz.foo