~vkolesnikov/pbxt/pbxt-preload-test-bug

« back to all changes in this revision

Viewing changes to pbxt/mysql-test-update/mysql-test/t/renamedb.test

  • Committer: paul-mccullagh
  • Date: 2008-03-10 11:36:34 UTC
  • Revision ID: paul-mccullagh-417ebf175a9c8ee6e5b3777d9e2398e1fb197391
Implemented full durability

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
create database testdb1 default character set latin2;
6
6
use testdb1;
7
 
create table t1 (a int);
 
7
create table t1 (a int) engine=myisam; # PBXT : can't do this (move to other db)
8
8
insert into t1 values (1),(2),(3);
9
9
show create database testdb1;
10
10
show tables;