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
9c20aa94
Commit
9c20aa94
authored
May 31, 2006
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb -
fix return value of "testBasic -n InsertError2 T1"
parent
8e0567e8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
storage/ndb/test/ndbapi/testBasic.cpp
storage/ndb/test/ndbapi/testBasic.cpp
+2
-1
No files found.
storage/ndb/test/ndbapi/testBasic.cpp
View file @
9c20aa94
...
@@ -1242,11 +1242,12 @@ runInsertError2(NDBT_Context* ctx, NDBT_Step* step){
...
@@ -1242,11 +1242,12 @@ runInsertError2(NDBT_Context* ctx, NDBT_Step* step){
CHECK
(
hugoOp1
.
pkInsertRecord
(
pNdb
,
1
)
==
0
);
CHECK
(
hugoOp1
.
pkInsertRecord
(
pNdb
,
1
)
==
0
);
CHECK
(
hugoOp1
.
pkDeleteRecord
(
pNdb
,
1
)
==
0
);
CHECK
(
hugoOp1
.
pkDeleteRecord
(
pNdb
,
1
)
==
0
);
CHECK
(
hugoOp1
.
execute_NoCommit
(
pNdb
)
==
0
);
hugoOp1
.
execute_NoCommit
(
pNdb
);
CHECK
(
hugoOp1
.
closeTransaction
(
pNdb
)
==
0
);
CHECK
(
hugoOp1
.
closeTransaction
(
pNdb
)
==
0
);
}
}
restarter
.
insertErrorInAllNodes
(
0
);
restarter
.
insertErrorInAllNodes
(
0
);
return
NDBT_OK
;
}
}
NDBT_TESTSUITE
(
testBasic
);
NDBT_TESTSUITE
(
testBasic
);
...
...
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