1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Merge perch.ndb.mysql.com:/home/jonas/src/mysql-5.0-release

into  perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new


mysql-test/r/ndb_basic.result:
  Auto merged
mysql-test/t/ndb_basic.test:
  Auto merged
sql/sql_class.cc:
  Auto merged
mysql-test/r/ndb_multi.result:
  merge
mysql-test/t/ndb_multi.test:
  merge
sql/ha_ndbcluster.cc:
  merge
This commit is contained in:
unknown
2005-12-15 15:11:42 +01:00
10 changed files with 17 additions and 9 deletions

View File

@ -35,6 +35,7 @@ Level Code Message
Error 1296 Got error 241 'Invalid schema object version' from NDB
Error 1412 Table definition has changed, please retry transaction
Error 1105 Unknown error
flush table t1;
select * from t1;
a
2

View File

@ -50,7 +50,7 @@ select (@id := id) - id from t2;
0
kill @id;
drop table t2;
ERROR 08S01: Server shutdown in progress
Got one of the listed errors
set global sql_slave_skip_counter=1;
start slave;
select count(*) from t1;

View File

@ -42,7 +42,7 @@ connection con1;
# debug build running without our --debug=make_global..., will be
# error 0 (no error). The only important thing to test is that on
# debug builds with our --debug=make_global... we don't hang forever.
--error 0,1053
--error 0,1053,2013
reap;
connection con2;

View File

@ -41,6 +41,7 @@ connection server1;
--error 1412
select * from t1;
show warnings;
flush table t1;
select * from t1;
# Connect to server2 and use the tables from there

View File

@ -92,7 +92,7 @@ kill @id;
# We don't drop t3 as this is a temporary table
drop table t2;
connection master;
--error 1053
--error 1053,2013
reap;
connection slave;
# The SQL slave thread should now have stopped because the query was killed on

View File

@ -58,7 +58,7 @@ while ($1)
enable_query_log;
select * from t1 for update;
start slave;
--sleep 3 # hope that slave is blocked now
--real_sleep 3 # hope that slave is blocked now
insert into t2 values(22); # provoke deadlock, slave should be victim
commit;
sync_with_master;
@ -76,7 +76,7 @@ change master to master_log_pos=532; # the BEGIN log event
begin;
select * from t2 for update; # hold lock
start slave;
--sleep 10 # slave should have blocked, and be retrying
--real_sleep 10 # slave should have blocked, and be retrying
commit;
sync_with_master;
select * from t1; # check that slave succeeded finally
@ -97,7 +97,7 @@ change master to master_log_pos=532;
begin;
select * from t2 for update;
start slave;
--sleep 10
--real_sleep 10
commit;
sync_with_master;
select * from t1;

View File

@ -45,7 +45,7 @@ select (@id := id) - id from t3;
kill @id;
drop table t2,t3;
connection master;
--error 0,1053
--error 0,1053,2013
reap;
connection master1;
--replace_column 2 # 5 #