mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
dd377bfba6
Use 0x.... as strings if 'new' mode. (bug 152) Don't report -max on windows when InnoDB is enabled. (bug 332) Reset current_linfo; This could cause a hang when doing PURGE LOGS. Fix for row numbers in EXPLAIN (bug 322) Fix that USE_FRM works for all table types (bug 97)
21 lines
535 B
Text
21 lines
535 B
Text
slave stop;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
slave start;
|
|
drop database if exists test_$1;
|
|
create database test_$1;
|
|
create table test_$1.t1 ( n int);
|
|
alter table test_$1.t1 add m int;
|
|
insert into test_$1.t1 values (1,2);
|
|
create table test_$1.t2 (n int);
|
|
insert into test_$1.t2 values (45);
|
|
rename table test_$1.t2 to test_$1.t3, test_$1.t1 to test_$1.t2;
|
|
select * from test_$1.t2;
|
|
n m
|
|
1 2
|
|
select * from test_$1.t3;
|
|
n
|
|
45
|
|
drop database test_$1;
|