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
65da581d
Commit
65da581d
authored
Nov 19, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb: fix merge bug in testBlobs
parent
1ca8a28e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
ndb/src/common/debugger/signaldata/SignalDataPrint.cpp
ndb/src/common/debugger/signaldata/SignalDataPrint.cpp
+1
-0
ndb/src/ndbapi/NdbOperationSearch.cpp
ndb/src/ndbapi/NdbOperationSearch.cpp
+14
-1
No files found.
ndb/src/common/debugger/signaldata/SignalDataPrint.cpp
View file @
65da581d
...
...
@@ -27,6 +27,7 @@
const
NameFunctionPair
SignalDataPrintFunctions
[]
=
{
{
GSN_TCKEYREQ
,
printTCKEYREQ
},
{
GSN_TCINDXREQ
,
printTCKEYREQ
},
{
GSN_TCKEYCONF
,
printTCKEYCONF
},
{
GSN_TCKEYREF
,
printTCKEYREF
},
{
GSN_LQHKEYREQ
,
printLQHKEYREQ
},
...
...
ndb/src/ndbapi/NdbOperationSearch.cpp
View file @
65da581d
...
...
@@ -209,7 +209,20 @@ NdbOperation::equal_impl(const NdbColumnImpl* tAttrInfo,
goto
equal_error4
;
Uint32
ahValue
;
const
Uint32
sz
=
totalSizeInWords
;
AttributeHeader
::
init
(
&
ahValue
,
tAttrId
,
sz
);
// XXX
if
(
m_accessTable
==
m_currentTable
)
{
AttributeHeader
::
init
(
&
ahValue
,
tAttrId
,
sz
);
}
else
{
assert
(
m_accessTable
->
m_index
);
int
attr_id_current_table
=
m_accessTable
->
m_index
->
m_columns
[
tAttrId
]
->
m_keyInfoPos
;
AttributeHeader
::
init
(
&
ahValue
,
attr_id_current_table
,
sz
);
}
insertATTRINFO
(
ahValue
);
insertATTRINFOloop
((
Uint32
*
)
aValueToWrite
,
sz
);
}
//if
...
...
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