~vadim-tk/percona-server/percona-5.5.15-galera

« back to all changes in this revision

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

  • Committer: root
  • Date: 2011-09-10 16:37:18 UTC
  • Revision ID: root@r815.office.percona.com-20110910163718-ydh4zj8hcdgoyavb
Porting Galera to 5.5.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008-2009 Sun Microsystems, Inc
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; version 2 of the License.
 
6
#
 
7
# This program is distributed in the hope that it will be useful,
 
8
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
# GNU General Public License for more details.
 
11
#
 
12
# You should have received a copy of the GNU General Public License
 
13
# along with this program; if not, write to the Free Software
 
14
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
15
 
 
16
# Tests for PERFORMANCE_SCHEMA
 
17
 
 
18
--source include/not_embedded.inc
 
19
--source include/have_perfschema.inc
 
20
--source include/have_lowercase0.inc
 
21
 
 
22
show databases;
 
23
 
 
24
use performance_schema;
 
25
 
 
26
show tables;
 
27
 
 
28
show create table cond_instances;
 
29
show create table events_waits_current;
 
30
show create table events_waits_history;
 
31
show create table events_waits_history_long;
 
32
show create table events_waits_summary_by_instance;
 
33
show create table events_waits_summary_by_thread_by_event_name;
 
34
show create table events_waits_summary_global_by_event_name;
 
35
show create table file_instances;
 
36
show create table file_summary_by_event_name;
 
37
show create table file_summary_by_instance;
 
38
show create table mutex_instances;
 
39
show create table performance_timers;
 
40
show create table rwlock_instances;
 
41
show create table setup_consumers;
 
42
show create table setup_instruments;
 
43
show create table setup_timers;
 
44
show create table threads;
 
45