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
b25cbdba
Commit
b25cbdba
authored
Jul 21, 2005
by
mronstrom@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed test cases for hash and linear hash and fixed guess in NDB API
for this as well
parent
d931417c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
8 deletions
+35
-8
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
+26
-8
storage/ndb/test/ndbapi/testPartitioning.cpp
storage/ndb/test/ndbapi/testPartitioning.cpp
+9
-0
No files found.
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
View file @
b25cbdba
...
...
@@ -505,19 +505,37 @@ NdbTableImpl::buildColumnHash(){
Uint32
NdbTableImpl
::
get_nodes
(
Uint32
hashValue
,
const
Uint16
**
nodes
)
const
{
if
(
m_replicaCount
>
0
)
Uint32
fragmentId
;
if
(
m_replicaCount
==
0
)
return
0
;
switch
(
m_fragmentType
)
{
Uint32
fragmentId
=
hashValue
&
m_hashValueMask
;
if
(
fragmentId
<
m_hashpointerValue
)
case
AllNodesSmallTable
:
case
AllNodesMediumTable
:
case
AllNodesLargeTable
:
case
SingleFragment
:
case
DistrKeyLin
:
{
fragmentId
=
hashValue
&
((
m_hashValueMask
<<
1
)
+
1
);
Uint32
fragmentId
=
hashValue
&
m_hashValueMask
;
if
(
fragmentId
<
m_hashpointerValue
)
{
fragmentId
=
hashValue
&
((
m_hashValueMask
<<
1
)
+
1
);
}
break
;
}
Uint32
pos
=
fragmentId
*
m_replicaCount
;
if
(
pos
+
m_replicaCount
<=
m_fragments
.
size
())
case
DistrKeyHash
:
{
*
nodes
=
m_fragments
.
getBase
()
+
pos
;
return
m_replicaCount
;
fragmentId
=
hashValue
%
m_fragmentCount
;
break
;
}
default:
return
0
;
}
Uint32
pos
=
fragmentId
*
m_replicaCount
;
if
(
pos
+
m_replicaCount
<=
m_fragments
.
size
())
{
*
nodes
=
m_fragments
.
getBase
()
+
pos
;
return
m_replicaCount
;
}
return
0
;
}
...
...
storage/ndb/test/ndbapi/testPartitioning.cpp
View file @
b25cbdba
...
...
@@ -94,6 +94,15 @@ add_distribution_key(Ndb*, NdbDictionary::Table& tab, int when)
}
}
}
Uint32
linear_hash_ind
=
rand
()
&
1
;
NdbDictionary
::
Table
::
FragmentType
ftype
;
if
(
linear_hash_ind
)
ftype
=
NdbDictionary
::
Table
::
DistrKeyLin
;
else
ftype
=
NdbDictionary
::
Table
::
DistrKeyHash
;
tab
.
setFragmentType
(
ftype
);
ndbout
<<
(
NDBT_Table
&
)
tab
<<
endl
;
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