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
edd89cf7
Commit
edd89cf7
authored
Oct 08, 2009
by
Magnus Blåudd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge
parent
482503d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
mysql-test/suite/binlog/t/binlog_stm_unsafe_warning.test
mysql-test/suite/binlog/t/binlog_stm_unsafe_warning.test
+12
-3
No files found.
mysql-test/suite/binlog/t/binlog_stm_unsafe_warning.test
View file @
edd89cf7
...
...
@@ -94,15 +94,24 @@ DROP TABLE t1;
SET
GLOBAL
log_warnings
=
@
old_log_warnings
;
let
LOG_ERROR
=
`SELECT @@GLOBAL.log_error`
;
let
$log_error
=
`SELECT @@GLOBAL.log_error`
;
if
(
!
$log_error
)
{
# MySQL Server on windows is started with --console and thus
# does not know the location of its .err log, use default location
let
$log_error
=
$MYSQLTEST_VARDIR
/
log
/
mysqld
.
1.
err
;
}
# Assign env variable LOG_ERROR
let
LOG_ERROR
=
$log_error
;
--
echo
# Count the number of times the "Unsafe" message was printed
--
echo
# to the error log.
perl
;
$log_error
=
$ENV
{
'LOG_ERROR'
};
use
strict
;
my
$log_error
=
$ENV
{
'LOG_ERROR'
}
||
die
"LOG_ERROR not set"
;
open
(
FILE
,
"
$log_error
"
)
or
die
(
"Unable to open
$log_error
: $!
\n
"
);
$count
=
()
=
grep
(
/
Bug
#46265/g,<FILE>);
my
$count
=
()
=
grep
(
/
Bug
#46265/g,<FILE>);
print
"Occurrences:
$count
\n
"
;
close
(
FILE
);
EOF
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