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
f53e1929
Commit
f53e1929
authored
Apr 27, 2007
by
tomas@whalegate.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#24560 Data nodes died(lgman) if undo_buffer_size from logfile group has small value
parent
cfd4183e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
+5
-1
No files found.
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
View file @
f53e1929
...
...
@@ -18,6 +18,7 @@
#define DBDICT_C
#include "Dbdict.hpp"
#include "diskpage.hpp"
#include <ndb_limits.h>
#include <NdbOut.hpp>
...
...
@@ -15498,7 +15499,10 @@ Dbdict::create_fg_prepare_start(Signal* signal, SchemaOp* op){
}
else
if
(
fg
.
FilegroupType
==
DictTabInfo
::
LogfileGroup
)
{
if
(
!
fg
.
LF_UndoBufferSize
)
/**
* undo_buffer_size can't be less than 96KB in LGMAN block
*/
if
(
fg
.
LF_UndoBufferSize
<
3
*
File_formats
::
NDB_PAGE_SIZE
)
{
op
->
m_errorCode
=
CreateFilegroupRef
::
InvalidUndoBufferSize
;
break
;
...
...
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