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
500fdc2d
Commit
500fdc2d
authored
May 26, 2005
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge
parent
7043d06f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
7 deletions
+6
-7
ndb/test/ndbapi/testNdbApi.cpp
ndb/test/ndbapi/testNdbApi.cpp
+2
-3
ndb/test/tools/hugoLoad.cpp
ndb/test/tools/hugoLoad.cpp
+1
-1
ndb/test/tools/hugoPkUpdate.cpp
ndb/test/tools/hugoPkUpdate.cpp
+1
-1
ndb/test/tools/hugoScanRead.cpp
ndb/test/tools/hugoScanRead.cpp
+1
-1
ndb/test/tools/hugoScanUpdate.cpp
ndb/test/tools/hugoScanUpdate.cpp
+1
-1
No files found.
ndb/test/ndbapi/testNdbApi.cpp
View file @
500fdc2d
...
...
@@ -942,8 +942,7 @@ int runReadWithoutGetValue(NDBT_Context* ctx, NDBT_Step* step){
return
NDBT_FAILED
;
}
NdbResultSet
*
rs
;
if
((
rs
=
pOp
->
readTuples
((
NdbOperation
::
LockMode
)
lm
))
==
0
){
if
((
pOp
->
readTuples
((
NdbOperation
::
LockMode
)
lm
))
!=
0
){
pNdb
->
closeTransaction
(
pCon
);
ERR
(
pOp
->
getNdbError
());
return
NDBT_FAILED
;
...
...
@@ -962,7 +961,7 @@ int runReadWithoutGetValue(NDBT_Context* ctx, NDBT_Step* step){
}
int
res
;
while
((
res
=
rs
->
nextResult
())
==
0
);
while
((
res
=
pOp
->
nextResult
())
==
0
);
pNdb
->
closeTransaction
(
pCon
);
if
(
res
!=
1
)
...
...
ndb/test/tools/hugoLoad.cpp
View file @
500fdc2d
...
...
@@ -61,7 +61,7 @@ int main(int argc, const char** argv){
{
return
NDBT_ProgramExit
(
NDBT_FAILED
);
}
Ndb
MyNdb
(
db
?
db
:
"TEST_DB"
);
Ndb
MyNdb
(
&
con
,
db
?
db
:
"TEST_DB"
);
if
(
MyNdb
.
init
()
!=
0
){
ERR
(
MyNdb
.
getNdbError
());
...
...
ndb/test/tools/hugoPkUpdate.cpp
View file @
500fdc2d
...
...
@@ -63,7 +63,7 @@ int main(int argc, const char** argv){
{
return
NDBT_ProgramExit
(
NDBT_FAILED
);
}
Ndb
MyNdb
(
db
?
db
:
"TEST_DB"
);
Ndb
MyNdb
(
&
con
,
db
?
db
:
"TEST_DB"
);
if
(
MyNdb
.
init
()
!=
0
){
ERR
(
MyNdb
.
getNdbError
());
...
...
ndb/test/tools/hugoScanRead.cpp
View file @
500fdc2d
...
...
@@ -67,7 +67,7 @@ int main(int argc, const char** argv){
{
return
NDBT_ProgramExit
(
NDBT_FAILED
);
}
Ndb
MyNdb
(
db
?
db
:
"TEST_DB"
);
Ndb
MyNdb
(
&
con
,
db
?
db
:
"TEST_DB"
);
if
(
MyNdb
.
init
()
!=
0
){
ERR
(
MyNdb
.
getNdbError
());
...
...
ndb/test/tools/hugoScanUpdate.cpp
View file @
500fdc2d
...
...
@@ -64,7 +64,7 @@ int main(int argc, const char** argv){
{
return
NDBT_ProgramExit
(
NDBT_FAILED
);
}
Ndb
MyNdb
(
db
?
db
:
"TEST_DB"
);
Ndb
MyNdb
(
&
con
,
db
?
db
:
"TEST_DB"
);
if
(
MyNdb
.
init
()
!=
0
){
ERR
(
MyNdb
.
getNdbError
());
...
...
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