Commit 701c0f82 authored by Michael Widenius's avatar Michael Widenius

Merge with 5.1

parents ef841d4c 2e34f182
...@@ -17,7 +17,16 @@ replace_result https http; ...@@ -17,7 +17,16 @@ replace_result https http;
perl; perl;
$log_error= $ENV{'MYSQLTEST_VARDIR'} . '/log/mysqld.1.err'; $log_error= $ENV{'MYSQLTEST_VARDIR'} . '/log/mysqld.1.err';
open(LOG, '<', $log_error) or die "open(< $log_error): $!"; open(LOG, '<', $log_error) or die "open(< $log_error): $!";
/feedback plugin:.*/ && print "$&\n" while $_=<LOG>;
# Get the first few rows (as there may be different number rows in the log)
$i= 0;
while ($_=<LOG>)
{
if (/feedback plugin:.*/)
{
print "$&\n";
break if ($i++ >= 3);
}
}
close LOG; close LOG;
EOF EOF
...@@ -1175,3 +1175,13 @@ ...@@ -1175,3 +1175,13 @@
fun:fil_delete_tablespace fun:fil_delete_tablespace
fun:row_drop_table_for_mysql fun:row_drop_table_for_mysql
} }
{
Problem with udf and libresolve
Memcheck:Cond
obj:*/libresolv*.so
fun:__libc_res_nquery
fun:_nss_dns_gethostbyaddr2_r
fun:_nss_dns_gethostbyaddr_r
fun:gethostbyaddr_r
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment