~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/r/backup_myisam1.result

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
drop database if exists mysqltest;
 
2
create database mysqltest;
 
3
use mysqltest;
 
4
CREATE TABLE t1 (a int) engine=myisam;
 
5
BACKUP DATABASE mysqltest TO 'test.ba';
 
6
ERROR HY000: Got error -1 'online backup impossible with --external-locking' from MyISAM
 
7
DROP DATABASE mysqltest;