1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Bug#19136: Crashing log-bin and uninitialized user variables in a derived table

recalculating results
This commit is contained in:
aelkin@mysql.com
2006-05-07 19:54:57 +03:00
parent 899cf9b584
commit 49bc52e5c9

View File

@ -106,5 +106,6 @@ slave-bin.000001 # User var 2 # @`a`=5
slave-bin.000001 # Query 1 # use `test`; insert into t1 values (@a),(@a)
slave-bin.000001 # User var 2 # @`a`=NULL
slave-bin.000001 # Query 1 # use `test`; insert into t1 values (@a),(@a),(@a*5)
insert into t1 select * FROM (select @var1 union select @var2) AS t2;
drop table t1;
stop slave;