1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

BUG#11316: mysqltest, problems when assigning value with '#' to $variable

- Add stricter checking of syntax in mysqltest
This commit is contained in:
msvensson@neptunus.(none)
2005-08-31 17:16:05 +02:00
parent 9ed35f83fa
commit 2fc6ef3a40
14 changed files with 541 additions and 479 deletions

View File

@ -6,7 +6,7 @@ source include/master-slave.inc;
connection master;
create table t1 (a int primary key);
# generate an error that goes to the binlog
--error 1062;
--error 1062
insert into t1 values (1),(1);
save_master_pos;
connection slave;
@ -45,7 +45,7 @@ select (@id := id) - id from t3;
kill @id;
drop table t2,t3;
connection master;
--error 0,1053;
--error 0,1053
reap;
connection master1;
show binlog events from 79;