File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
mysql-test/suite/sysschema Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change
1
+ SELECT COUNT(*) FROM INFORMATION_SCHEMA.TRIGGERS WHERE TRIGGER_SCHEMA='sys';
2
+ COUNT(*)
3
+ 0
1
4
DESC sys.sys_config;
2
5
Field Type Null Key Default Extra
3
6
variable varchar(128) NO PRI NULL
Original file line number Diff line number Diff line change 1
1
-- source include/not_embedded.inc
2
2
# Tests for sys schema
3
3
# Verify the sys.sys_config table is as expected
4
-
4
+ SELECT COUNT(*) FROM INFORMATION_SCHEMA.TRIGGERS WHERE TRIGGER_SCHEMA='sys';
5
5
DESC sys.sys_config;
6
6
7
7
SELECT variable, value, set_by FROM sys.sys_config ORDER BY 1;
@@ -11,7 +11,6 @@ UPDATE sys.sys_config SET value = 128 WHERE variable = 'statement_truncate_len';
11
11
12
12
SELECT variable, value, set_by FROM sys.sys_config ORDER BY 1;
13
13
14
- # Ensure the sys.sys_config_insert_set_user trigger functions correctly
15
14
INSERT INTO sys.sys_config (variable, value) VALUES ('foo', 'bar');
16
15
17
16
SELECT variable, value, set_by FROM sys.sys_config ORDER BY 1;
You can’t perform that action at this time.
0 commit comments