File: start_server_no_cond_inst.test

package info (click to toggle)
mysql-5.5 5.5.42-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 201,212 kB
  • sloc: cpp: 646,036; ansic: 551,342; perl: 53,243; pascal: 25,099; yacc: 13,059; sh: 10,248; cs: 4,647; xml: 4,178; sql: 3,193; makefile: 1,368; lex: 639; awk: 54
file content (26 lines) | stat: -rw-r--r-- 709 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Tests for PERFORMANCE_SCHEMA

--source include/not_embedded.inc
--source include/have_perfschema.inc

--source ../include/start_server_common.inc

# Expect classes
show variables like "performance_schema_max_cond_classes";

select count(*) > 0 from performance_schema.setup_instruments
  where name like "wait/synch/cond/%";

# Expect no class lost
show status like "performance_schema_cond_classes_lost";

# Expect no instances
show variables like "performance_schema_max_cond_instances";

select count(*) from performance_schema.cond_instances;

# Expect instances lost
select variable_value > 0 from information_schema.global_status
  where variable_name like 'PERFORMANCE_SCHEMA_COND_INSTANCES_LOST';