Commit 4c35c14b authored by unknown's avatar unknown
Browse files

Merge salvation.intern.azundris.com:/home/tnurnberg/work/mysql-5.1-maint-i51

into  salvation.intern.azundris.com:/home/tnurnberg/mysql-5.1


mysql-test/t/disabled.def:
  manual merge
parents b32b2ce7 c7815f2a
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -633,7 +633,7 @@ sub mtr_check_stop_servers ($) {
      }
      else
      {
	mtr_verbose("All ports where free, continuing");
	mtr_verbose("All ports were free, continuing");
      }
    }
  }
@@ -896,6 +896,7 @@ sub check_expected_crash_and_restart($)

sub mtr_record_dead_children () {

  my $process_died= 0;
  my $ret_pid;

  # Wait without blockinng to see if any processes had died
@@ -904,7 +905,9 @@ sub mtr_record_dead_children () {
  {
    mtr_warning("mtr_record_dead_children: $ret_pid");
    mark_process_dead($ret_pid);
    $process_died= 1;
  }
  return $process_died;
}

sub start_reap_all {
+332 −230

File changed.

Preview size limit exceeded, changes collapsed.

+4 −12
Original line number Diff line number Diff line
@@ -1295,24 +1295,16 @@ insert into t2 (a) select b from t1;
insert into t1 (a) select b from t2;
insert into t2 (a) select b from t1;
insert into t1 (a) select b from t2;
insert into t2 (a) select b from t1;
insert into t1 (a) select b from t2;
insert into t2 (a) select b from t1;
insert into t1 (a) select b from t2;
insert into t2 (a) select b from t1;
insert into t1 (a) select b from t2;
insert into t2 (a) select b from t1;
insert into t1 (a) select b from t2;
select count(*) from t1;
count(*)
29267
623
explain select * from t1 where c between 1 and 2500;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	c	c	5	NULL	#	Using where
update t1 set c=a;
explain select * from t1 where c between 1 and 2500;
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	t1	range	c	c	5	NULL	#	Using where
1	SIMPLE	t1	ALL	c	NULL	NULL	NULL	#	Using where
drop table t1,t2;
create table t1 (id int primary key auto_increment, fk int, index index_fk (fk)) engine=innodb;
insert into t1 (id) values (null),(null),(null),(null),(null);
@@ -1786,10 +1778,10 @@ Variable_name Value
Innodb_rows_deleted	2070
show status like "Innodb_rows_inserted";
Variable_name	Value
Innodb_rows_inserted	31727
Innodb_rows_inserted	3083
show status like "Innodb_rows_updated";
Variable_name	Value
Innodb_rows_updated	29530
Innodb_rows_updated	886
show status like "Innodb_row_lock_waits";
Variable_name	Value
Innodb_row_lock_waits	0
+8 −0

File changed.

Preview size limit exceeded, changes collapsed.

mysql-test/r/mysql_client.result

deleted100644 → 0
+0 −56

File deleted.

Preview size limit exceeded, changes collapsed.

Loading