~jlukas79/+junk/mysql-server

« back to all changes in this revision

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

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
CREATE DATABASE bdb;
7
7
CREATE TABLE bdb.t1(a int) ENGINE=MEMORY;
8
8
BACKUP DATABASE adb TO '';
9
 
ERROR HY000: Invalid backup location ''
 
9
ERROR HY000: Malformed file path ''
10
10
BACKUP DATABASE adb TO "bdb/t1.frm";
11
11
ERROR HY000: Can't write to backup location 'bdb/t1.frm' (file already exists?)
12
12
BACKUP DATABASE adb TO "test.bak";
79
79
SHOW ERRORS;
80
80
Level   Code    Message
81
81
Error   #       Table 'mysql.online_backup' doesn't exist
82
 
Error   #       Can't open the online backup progress tables. Check 'mysql.online_backup' and 'mysql.online_backup_progress'.
 
82
Error   #       Cannot create backup/restore execution context
83
83
Restoring the table
84
84
CREATE TABLE mysql.online_backup LIKE test.ob_copy;
85
85
DROP TABLE test.ob_copy;
90
90
SHOW ERRORS;
91
91
Level   Code    Message
92
92
Error   #       Table 'mysql.online_backup_progress' doesn't exist
93
 
Error   #       Can't open the online backup progress tables. Check 'mysql.online_backup' and 'mysql.online_backup_progress'.
 
93
Error   #       Cannot create backup/restore execution context
94
94
Restoring the table
95
95
CREATE TABLE mysql.online_backup_progress LIKE test.obp_copy;
96
96
DROP TABLE test.obp_copy;