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
3877c091
Commit
3877c091
authored
Sep 14, 2006
by
lzhou/root@dev3-138.dev.cn.tlan
Browse files
Options
Browse Files
Download
Plain Diff
Merge dev3-138.dev.cn.tlan:/home/zhl/mysql/mysql-5.0/bug19787
into dev3-138.dev.cn.tlan:/home/zhl/mysql/mysql-5.1/bug19787
parents
9438d22c
e7d5d11e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
+7
-1
No files found.
storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
View file @
3877c091
...
...
@@ -6699,7 +6699,13 @@ void Dbdih::execCREATE_FRAGMENTATION_REQ(Signal * signal)
}
}
}
ndbrequire
(
count
==
(
2U
+
(
1
+
noOfReplicas
)
*
noOfFragments
));
if
(
count
!=
(
2U
+
(
1
+
noOfReplicas
)
*
noOfFragments
)){
char
buf
[
255
];
BaseString
::
snprintf
(
buf
,
sizeof
(
buf
),
"Illegal configuration change: NoOfReplicas."
" Can't be applied online "
);
progError
(
__LINE__
,
NDBD_EXIT_INVALID_CONFIG
,
buf
);
}
CreateFragmentationConf
*
const
conf
=
(
CreateFragmentationConf
*
)
signal
->
getDataPtrSend
();
...
...
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