1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Merge mysql.com:/usr_rh9/home/elkin.rh9/4.1

into  mysql.com:/usr_rh9/home/elkin.rh9/MySQL/Merge/5.0-bug19136
This commit is contained in:
aelkin@mysql.com
2006-05-07 16:02:55 +03:00
5 changed files with 129 additions and 3 deletions

View File

@@ -48,9 +48,15 @@ sync_with_master;
select * from t1;
--replace_column 2 # 5 #
show binlog events from 98;
#
# BUG19136: Crashing log-bin and uninitialized user variables in a derived table
# just to check nothing bad happens anymore
#
connection master;
insert into t1 select * FROM (select @var1 union select @var2) AS t2;
drop table t1;
save_master_pos;
connection slave;
sync_with_master;
stop slave;