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
a4208cdc
Commit
a4208cdc
authored
Jan 27, 2007
by
df@kahlann.erinye.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#25890 put previous fix in better place
parent
26c6d2d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
libmysqld/lib_sql.cc
libmysqld/lib_sql.cc
+5
-5
No files found.
libmysqld/lib_sql.cc
View file @
a4208cdc
...
...
@@ -538,6 +538,11 @@ int init_embedded_server(int argc, char **argv, char **groups)
sql_print_error
(
"Warning: Can't create thread to manage maintenance"
);
}
// FIXME initialize binlog_filter and rpl_filter if not already done
// corresponding delete is in clean_up()
if
(
!
binlog_filter
)
binlog_filter
=
new
Rpl_filter
;
if
(
!
rpl_filter
)
rpl_filter
=
new
Rpl_filter
;
if
(
opt_init_file
)
{
if
(
read_init_file
(
opt_init_file
))
...
...
@@ -547,11 +552,6 @@ int init_embedded_server(int argc, char **argv, char **groups)
}
}
// FIXME initialize binlog_filter and rpl_filter if not already done
// corresponding delete is in clean_up()
if
(
!
binlog_filter
)
binlog_filter
=
new
Rpl_filter
;
if
(
!
rpl_filter
)
rpl_filter
=
new
Rpl_filter
;
execute_ddl_log_recovery
();
return
0
;
}
...
...
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