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
3b050ed4
Commit
3b050ed4
authored
Aug 14, 2006
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge
parent
73c58c32
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
storage/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp
storage/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp
+5
-3
No files found.
storage/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp
View file @
3b050ed4
...
...
@@ -950,9 +950,10 @@ int Dbtup::handleReadReq(Signal* signal,
}
}
else
{
jam
();
if
(
likely
(
interpreterStartLab
(
signal
,
req_struct
)
!=
-
1
)
{
if
(
likely
(
interpreterStartLab
(
signal
,
req_struct
)
!=
-
1
)
)
{
return
0
;
}
return
-
1
;
}
jam
();
...
...
@@ -1046,9 +1047,10 @@ int Dbtup::handleUpdateReq(Signal* signal,
req_struct
->
attrinfo_len
);
}
else
{
jam
();
retValue
=
interpreterStartLab
(
signal
,
req_struct
);
if
(
unlikely
(
interpreterStartLab
(
signal
,
req_struct
)
==
-
1
))
return
-
1
;
}
if
(
retValue
==
-
1
)
{
goto
error
;
}
...
...
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