Current Path : /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 |
Current File : //usr/opt/mysql57/mysql-test/suite/sysschema/t/t_sys_config.test |
-- source include/not_embedded.inc # Tests for sys schema # Verify the sys.sys_config table is as expected DESC sys.sys_config; SELECT variable, value, set_by FROM sys.sys_config; # Ensure the sys.sys_config_update_set_user trigger functions correctly UPDATE sys.sys_config SET value = 128 WHERE variable = 'statement_truncate_len'; SELECT variable, value, set_by FROM sys.sys_config; # Ensure the sys.sys_config_insert_set_user trigger functions correctly INSERT INTO sys.sys_config (variable, value) VALUES ('foo', 'bar'); SELECT variable, value, set_by FROM sys.sys_config; --source ../include/sys_config_cleanup.inc