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
40888f48
Commit
40888f48
authored
Nov 14, 2006
by
Justin.He/justin.he@dev3-47.dev.cn.tlan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#19808, Online config. Wrong error message if DataMemory less than a data on cluster
parent
c10719c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
+14
-2
No files found.
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
View file @
40888f48
...
...
@@ -3249,8 +3249,20 @@ Dbdict::restartCreateTab_dihComplete(Signal* signal,
CreateTableRecordPtr
createTabPtr
;
ndbrequire
(
c_opCreateTable
.
find
(
createTabPtr
,
callbackData
));
//@todo check error
ndbrequire
(
createTabPtr
.
p
->
m_errorCode
==
0
);
fprintf
(
stderr
,
"Dbdict:restartCreateTab_dihComplete:, errorCode=%d
\n
"
,
createTabPtr
.
p
->
m_errorCode
);
if
(
createTabPtr
.
p
->
m_errorCode
!=
0
)
{
char
buf
[
255
];
BaseString
::
snprintf
(
buf
,
sizeof
(
buf
),
"Unable to restart, fail while creating table"
" error: %d. Most likely change of configuration"
,
createTabPtr
.
p
->
m_errorCode
);
progError
(
__LINE__
,
NDBD_EXIT_INVALID_CONFIG
,
buf
);
ndbrequire
(
createTabPtr
.
p
->
m_errorCode
==
0
);
}
Callback
callback
;
callback
.
m_callbackData
=
callbackData
;
...
...
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