2007-06-07 14:25:17 +02:00
|
|
|
|
|
|
|
# The server need to be started in $MYSQLTEST_VARDIR since it
|
2007-12-12 18:19:24 +01:00
|
|
|
# uses ../../std_data/
|
2009-02-05 21:47:23 +01:00
|
|
|
--source include/uses_vardir.inc
|
|
|
|
|
|
|
|
# Save the initial number of concurrent sessions
|
|
|
|
--source include/count_sessions.inc
|
2007-06-07 14:25:17 +02:00
|
|
|
|
2003-03-10 11:22:37 +02:00
|
|
|
#
|
|
|
|
# This test is a bit tricky as we can't use backup table to overwrite an old
|
|
|
|
# table
|
|
|
|
#
|
2001-03-25 01:02:26 +02:00
|
|
|
connect (con1,localhost,root,,);
|
|
|
|
connect (con2,localhost,root,,);
|
2001-01-18 17:36:20 -07:00
|
|
|
connection con1;
|
|
|
|
set SQL_LOG_BIN=0;
|
2003-01-06 01:48:59 +02:00
|
|
|
--disable_warnings
|
2005-12-30 14:55:56 +04:00
|
|
|
drop table if exists t1, t2, t3, t4;
|
2003-01-06 01:48:59 +02:00
|
|
|
--enable_warnings
|
2003-03-10 11:22:37 +02:00
|
|
|
create table t4(n int);
|
2006-01-24 08:30:54 +01:00
|
|
|
--replace_result ": 1" ": X" ": 2" ": X" ": 22" ": X" ": 23" ": X" $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
|
2007-12-12 18:19:24 +01:00
|
|
|
backup table t4 to '../../bogus';
|
|
|
|
backup table t4 to '../../tmp';
|
2006-01-24 08:30:54 +01:00
|
|
|
--replace_result ": 7" ": X" ": 17" ": X" $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
|
2007-12-12 18:19:24 +01:00
|
|
|
backup table t4 to '../../tmp';
|
2003-03-10 11:22:37 +02:00
|
|
|
drop table t4;
|
2007-12-12 18:19:24 +01:00
|
|
|
restore table t4 from '../../tmp';
|
2003-03-10 11:22:37 +02:00
|
|
|
select count(*) from t4;
|
|
|
|
|
2001-01-18 17:36:20 -07:00
|
|
|
create table t1(n int);
|
|
|
|
insert into t1 values (23),(45),(67);
|
2007-12-12 18:19:24 +01:00
|
|
|
backup table t1 to '../../tmp';
|
2001-01-18 17:36:20 -07:00
|
|
|
drop table t1;
|
2006-01-24 08:30:54 +01:00
|
|
|
--replace_result ": 1" ": X" ": 2" ": X" ": 22" ": X" ": 23" ": X" $MYSQLTEST_VARDIR MYSQLTEST_VARDIR
|
2007-12-12 18:19:24 +01:00
|
|
|
restore table t1 from '../../bogus';
|
|
|
|
restore table t1 from '../../tmp';
|
2001-01-18 17:36:20 -07:00
|
|
|
select n from t1;
|
|
|
|
create table t2(m int not null primary key);
|
|
|
|
create table t3(k int not null primary key);
|
|
|
|
insert into t2 values (123),(145),(167);
|
|
|
|
insert into t3 values (223),(245),(267);
|
2007-12-12 18:19:24 +01:00
|
|
|
backup table t2,t3 to '../../tmp';
|
2001-01-18 17:36:20 -07:00
|
|
|
drop table t1,t2,t3;
|
2007-12-12 18:19:24 +01:00
|
|
|
restore table t1,t2,t3 from '../../tmp';
|
2001-01-18 17:36:20 -07:00
|
|
|
select n from t1;
|
|
|
|
select m from t2;
|
|
|
|
select k from t3;
|
2003-03-10 11:22:37 +02:00
|
|
|
drop table t1,t2,t3,t4;
|
2007-12-12 18:19:24 +01:00
|
|
|
restore table t1 from '../../tmp';
|
2001-01-23 08:20:51 -07:00
|
|
|
connection con2;
|
2003-03-10 11:22:37 +02:00
|
|
|
rename table t1 to t5;
|
2001-02-15 03:43:14 +02:00
|
|
|
--send
|
2003-03-10 11:22:37 +02:00
|
|
|
lock tables t5 write;
|
2001-01-23 08:20:51 -07:00
|
|
|
connection con1;
|
2001-02-15 03:43:14 +02:00
|
|
|
--send
|
2007-12-12 18:19:24 +01:00
|
|
|
backup table t5 to '../../tmp';
|
2001-01-23 08:20:51 -07:00
|
|
|
connection con2;
|
|
|
|
reap;
|
|
|
|
unlock tables;
|
|
|
|
connection con1;
|
|
|
|
reap;
|
2003-03-10 11:22:37 +02:00
|
|
|
drop table t5;
|
2009-02-05 21:47:23 +01:00
|
|
|
connection default;
|
|
|
|
disconnect con1;
|
|
|
|
disconnect con2;
|
2007-08-29 12:44:43 +02:00
|
|
|
remove_file $MYSQLTEST_VARDIR/tmp/t1.MYD;
|
|
|
|
remove_file $MYSQLTEST_VARDIR/tmp/t2.MYD;
|
|
|
|
remove_file $MYSQLTEST_VARDIR/tmp/t3.MYD;
|
|
|
|
remove_file $MYSQLTEST_VARDIR/tmp/t4.MYD;
|
|
|
|
remove_file $MYSQLTEST_VARDIR/tmp/t5.MYD;
|
|
|
|
remove_file $MYSQLTEST_VARDIR/tmp/t1.frm;
|
|
|
|
remove_file $MYSQLTEST_VARDIR/tmp/t2.frm;
|
|
|
|
remove_file $MYSQLTEST_VARDIR/tmp/t3.frm;
|
|
|
|
remove_file $MYSQLTEST_VARDIR/tmp/t4.frm;
|
|
|
|
remove_file $MYSQLTEST_VARDIR/tmp/t5.frm;
|
2005-07-28 03:22:47 +03:00
|
|
|
|
2009-02-05 21:47:23 +01:00
|
|
|
|
2005-07-28 03:22:47 +03:00
|
|
|
# End of 4.1 tests
|
2006-08-02 17:57:06 +02:00
|
|
|
# End of 5.0 tests
|
|
|
|
|
|
|
|
#
|
|
|
|
# Bug#18775 - Temporary table from alter table visible to other threads
|
|
|
|
#
|
|
|
|
# Backup did not encode table names.
|
|
|
|
--disable_warnings
|
2006-08-03 08:12:56 +02:00
|
|
|
DROP TABLE IF EXISTS `t+1`;
|
2006-08-02 17:57:06 +02:00
|
|
|
--enable_warnings
|
2006-08-03 08:12:56 +02:00
|
|
|
CREATE TABLE `t+1` (c1 INT);
|
|
|
|
INSERT INTO `t+1` VALUES (1), (2), (3);
|
2007-12-12 18:19:24 +01:00
|
|
|
BACKUP TABLE `t+1` TO '../../tmp';
|
2006-08-03 08:12:56 +02:00
|
|
|
DROP TABLE `t+1`;
|
2006-08-02 17:57:06 +02:00
|
|
|
#
|
|
|
|
# Same for restore.
|
2007-12-12 18:19:24 +01:00
|
|
|
RESTORE TABLE `t+1` FROM '../../tmp';
|
2006-08-03 08:12:56 +02:00
|
|
|
SELECT * FROM `t+1`;
|
|
|
|
DROP TABLE `t+1`;
|
2009-02-09 22:00:15 +01:00
|
|
|
#
|
|
|
|
remove_file $MYSQLTEST_VARDIR/tmp/t@002b1.frm;
|
|
|
|
remove_file $MYSQLTEST_VARDIR/tmp/t@002b1.MYD;
|
|
|
|
|
2009-02-05 21:47:23 +01:00
|
|
|
|
|
|
|
# Wait till all disconnects are completed
|
|
|
|
--source include/wait_until_count_sessions.inc
|
2006-08-02 17:57:06 +02:00
|
|
|
|