1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00

Merge ua141d10.elisa.omakaista.fi:/home/my/bk/mysql-5.0

into  ua141d10.elisa.omakaista.fi:/home/my/bk/mysql-5.1-new
This commit is contained in:
jani@ua141d10.elisa.omakaista.fi
2006-05-09 20:50:29 +03:00
117 changed files with 2487 additions and 970 deletions

View File

@@ -1,8 +1,4 @@
###################################
# Change Author: JBM
# Change Date: 2006-01-17
# Change: Added order by
###################################
#
# Test of replicating user variables
#
@@ -54,7 +50,12 @@ insert into t1 values (@a),(@a),(@a*5);
SELECT * FROM t1 ORDER BY n;
sync_slave_with_master;
SELECT * FROM t1 ORDER BY n;
#
# 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;
sync_slave_with_master;
stop slave;