~vadim-tk/percona-server/flushing-algo

« back to all changes in this revision

Viewing changes to mysql-test/suite/funcs_1/t/memory_views.test

  • Committer: root
  • Date: 2011-10-29 01:34:40 UTC
  • Revision ID: root@hppro1.office.percona.com-20111029013440-qhnf4jk8kdjcf4e0
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#### suite/funcs_1/t/memory_views.test
 
2
 
 
3
# Memory tables should be used
 
4
#
 
5
# Set $engine_type
 
6
SET @@session.sql_mode = 'NO_ENGINE_SUBSTITUTION';
 
7
let $engine_type= memory;
 
8
--source suite/funcs_1/include/bug28309_skip.inc
 
9
 
 
10
# Create some objects needed in many testcases
 
11
USE test;
 
12
--source suite/funcs_1/include/memory_tb2.inc
 
13
--disable_warnings
 
14
DROP DATABASE IF EXISTS test1;
 
15
--enable_warnings
 
16
CREATE DATABASE test1;
 
17
USE test1;
 
18
--source suite/funcs_1/include/memory_tb2.inc
 
19
USE test;
 
20
 
 
21
--source suite/funcs_1/views/views_master.inc
 
22
DROP DATABASE test1;
 
23
DROP TABLE test.tb2;
 
24