~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/suite/falcon/r/falcon_bug_22182.result

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#---- Bug 22182 ----
2
 
SET STORAGE_ENGINE='Falcon';
3
 
DROP DATABASE IF EXISTS falcon1;
4
 
DROP DATABASE IF EXISTS falcon2;
5
 
CREATE DATABASE falcon1;
6
 
USE falcon1;
7
 
CREATE TABLE t (s1 int);
8
 
RENAME DATABASE falcon1 to falcon2;
9
 
INSERT INTO t VALUES (0);
10
 
DROP DATABASE falcon2;