Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
701c0f82
Commit
701c0f82
authored
Dec 03, 2011
by
Michael Widenius
Browse files
Options
Browse Files
Download
Plain Diff
Merge with 5.1
parents
ef841d4c
2e34f182
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
2 deletions
+21
-2
mysql-test/t/feedback_plugin_send.test
mysql-test/t/feedback_plugin_send.test
+11
-2
mysql-test/valgrind.supp
mysql-test/valgrind.supp
+10
-0
No files found.
mysql-test/t/feedback_plugin_send.test
View file @
701c0f82
...
@@ -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
mysql-test/valgrind.supp
View file @
701c0f82
...
@@ -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
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment