~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to mysql-test/suite/perfschema/t/start_server_no_statements_history.test

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Tests for PERFORMANCE_SCHEMA
 
2
 
 
3
--source include/not_embedded.inc
 
4
--source include/have_perfschema.inc
 
5
 
 
6
--source ../include/start_server_common.inc
 
7
 
 
8
# Expect no history
 
9
show variables like "performance_schema_events_statements_history_size";
 
10
select count(*) from performance_schema.events_statements_history;
 
11
 
 
12
# Valid operation, edge case
 
13
truncate table performance_schema.events_statements_history;
 
14