~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#### suite/funcs_1/t/innodb_views.test
 
2
 
 
3
# InnoDB tables should be used
 
4
#
 
5
# 1. Check if InnoDB is available
 
6
--source include/have_innodb.inc
 
7
# 2. Set $engine_type
 
8
let $engine_type= innodb;
 
9
 
 
10
# Create some objects needed in many testcases
 
11
USE test;
 
12
--source suite/funcs_1/include/innodb_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/innodb_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