config root man

Current Path : /home/usr.opt/mysql57/mysql-test/suite/sysschema/t/

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
Upload File :
Current File : //home/usr.opt/mysql57/mysql-test/suite/sysschema/t/fn_format_bytes.test

-- source include/not_embedded.inc
# Tests for sys schema
# Verify the sys.format_bytes() function perfoms as expected

# Passing NULL/nothing should return NULL
SELECT sys.format_bytes(NULL);

# Format bytes
SELECT sys.format_bytes(1);
SELECT sys.format_bytes(1023);

# Format kilobytes
SELECT sys.format_bytes(1024);
SELECT sys.format_bytes(1048575);

# Format megabytes
SELECT sys.format_bytes(1048576);
SELECT sys.format_bytes(1073741823);

# Format gigabytes
SELECT sys.format_bytes(1073741824);
SELECT sys.format_bytes(1099511627775);

# Format terabytes
SELECT sys.format_bytes(1099511627776);
SELECT sys.format_bytes(1125899906842623);

# Formate petabytes
SELECT sys.format_bytes(1125899906842624);
SELECT sys.format_bytes(1125899906842624238947293);

Man Man