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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
dd4124c2
Commit
dd4124c2
authored
4 years ago
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-22271 Excessive stack memory usage due to WSREP_LOG
fix embedded innodb_plugin tests followup for
7198c6ab
parent
f462fbac
Branches unavailable
Tags unavailable
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
9 deletions
+4
-9
sql/mysqld.cc
sql/mysqld.cc
+0
-9
sql/wsrep_dummy.cc
sql/wsrep_dummy.cc
+4
-0
No files found.
sql/mysqld.cc
View file @
dd4124c2
...
...
@@ -1814,15 +1814,6 @@ static void close_server_sock()
#endif
}
#else
/* EMBEDDED LIBRARY */
# ifndef _WIN32
/* Unfortunately, ha_innodb.so is by default built WITH_WSREP, and it
will be used for both the normal and the embedded server, while the
embedded server library is never built WITH_WSREP. We must define this
symbol in the embedded library, so that loading a dynamic InnoDB storage
engine plugin will work in the embedded server library. */
void
wsrep_log
(
void
(
*
)(
const
char
*
,
...),
const
char
*
,
...)
{}
# endif
#endif
/*EMBEDDED_LIBRARY*/
...
...
This diff is collapsed.
Click to expand it.
sql/wsrep_dummy.cc
View file @
dd4124c2
...
...
@@ -141,3 +141,7 @@ void wsrep_unlock_rollback()
void
wsrep_set_data_home_dir
(
const
char
*
)
{
}
void
wsrep_log
(
void
(
*
)(
const
char
*
,
...),
const
char
*
,
...)
{
}
This diff is collapsed.
Click to expand it.
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