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
4f7360f3
Commit
4f7360f3
authored
Jul 22, 2005
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb - hugo, fix closeTransaction in testPartitioning
parent
21edad59
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
68 additions
and
61 deletions
+68
-61
ndb/test/include/UtilTransactions.hpp
ndb/test/include/UtilTransactions.hpp
+2
-0
ndb/test/src/HugoOperations.cpp
ndb/test/src/HugoOperations.cpp
+1
-5
ndb/test/src/UtilTransactions.cpp
ndb/test/src/UtilTransactions.cpp
+65
-56
No files found.
ndb/test/include/UtilTransactions.hpp
View file @
4f7360f3
...
...
@@ -28,6 +28,8 @@ public:
UtilTransactions
(
Ndb
*
ndb
,
const
char
*
tableName
,
const
char
*
indexName
=
0
);
int
closeTransaction
(
Ndb
*
);
int
clearTable
(
Ndb
*
,
int
records
=
0
,
int
parallelism
=
0
);
...
...
ndb/test/src/HugoOperations.cpp
View file @
4f7360f3
...
...
@@ -53,11 +53,7 @@ HugoOperations::setTransactionId(Uint64 id){
int
HugoOperations
::
closeTransaction
(
Ndb
*
pNdb
){
if
(
pTrans
!=
NULL
){
pNdb
->
closeTransaction
(
pTrans
);
pTrans
=
NULL
;
}
pTrans
=
NULL
;
UtilTransactions
::
closeTransaction
(
pNdb
);
m_result_sets
.
clear
();
m_executed_result_sets
.
clear
();
...
...
ndb/test/src/UtilTransactions.cpp
View file @
4f7360f3
...
...
@@ -109,7 +109,7 @@ UtilTransactions::clearTable3(Ndb* pNdb,
err
=
pTrans
->
getNdbError
();
if
(
err
.
status
==
NdbError
::
TemporaryError
){
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
NdbSleep_MilliSleep
(
50
);
par
=
1
;
goto
restart
;
...
...
@@ -126,7 +126,7 @@ UtilTransactions::clearTable3(Ndb* pNdb,
err
=
pTrans
->
getNdbError
();
if
(
err
.
status
==
NdbError
::
TemporaryError
){
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
NdbSleep_MilliSleep
(
50
);
continue
;
}
...
...
@@ -150,7 +150,7 @@ UtilTransactions::clearTable3(Ndb* pNdb,
if
(
check
==
-
1
){
if
(
err
.
status
==
NdbError
::
TemporaryError
){
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
NdbSleep_MilliSleep
(
50
);
par
=
1
;
goto
restart
;
...
...
@@ -162,20 +162,20 @@ UtilTransactions::clearTable3(Ndb* pNdb,
err
=
pTrans
->
getNdbError
();
if
(
err
.
status
==
NdbError
::
TemporaryError
){
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
NdbSleep_MilliSleep
(
50
);
par
=
1
;
goto
restart
;
}
goto
failed
;
}
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_OK
;
}
return
NDBT_FAILED
;
failed:
if
(
pTrans
!=
0
)
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
ERR
(
err
);
return
(
err
.
code
!=
0
?
err
.
code
:
NDBT_FAILED
);
}
...
...
@@ -219,20 +219,20 @@ UtilTransactions::copyTableData(Ndb* pNdb,
pOp
=
pTrans
->
getNdbScanOperation
(
tab
.
getName
());
if
(
pOp
==
NULL
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
if
(
pOp
->
readTuples
(
NdbScanOperation
::
LM_Read
,
parallelism
)
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
check
=
pOp
->
interpret_exit_ok
();
if
(
check
==
-
1
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
...
...
@@ -241,7 +241,7 @@ UtilTransactions::copyTableData(Ndb* pNdb,
if
((
row
.
attributeStore
(
a
)
=
pOp
->
getValue
(
tab
.
getColumn
(
a
)
->
getName
()))
==
0
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
}
...
...
@@ -249,7 +249,7 @@ UtilTransactions::copyTableData(Ndb* pNdb,
check
=
pTrans
->
execute
(
NoCommit
);
if
(
check
==
-
1
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
...
...
@@ -258,7 +258,7 @@ UtilTransactions::copyTableData(Ndb* pNdb,
do
{
insertedRows
++
;
if
(
addRowToInsert
(
pNdb
,
pTrans
,
row
,
destName
)
!=
0
){
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
}
while
((
eof
=
pOp
->
nextResult
(
false
))
==
0
);
...
...
@@ -268,7 +268,7 @@ UtilTransactions::copyTableData(Ndb* pNdb,
if
(
check
==
-
1
)
{
const
NdbError
err
=
pTrans
->
getNdbError
();
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
}
...
...
@@ -277,7 +277,7 @@ UtilTransactions::copyTableData(Ndb* pNdb,
if
(
err
.
status
==
NdbError
::
TemporaryError
){
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
NdbSleep_MilliSleep
(
50
);
// If error = 488 there should be no limit on number of retry attempts
if
(
err
.
code
!=
488
)
...
...
@@ -285,11 +285,11 @@ UtilTransactions::copyTableData(Ndb* pNdb,
continue
;
}
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
g_info
<<
insertedRows
<<
" rows copied"
<<
endl
;
...
...
@@ -375,7 +375,7 @@ UtilTransactions::scanReadRecords(Ndb* pNdb,
pOp
=
getScanOperation
(
pTrans
);
if
(
pOp
==
NULL
)
{
const
NdbError
err
=
pNdb
->
getNdbError
();
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
if
(
err
.
status
==
NdbError
::
TemporaryError
){
ERR
(
err
);
...
...
@@ -389,14 +389,14 @@ UtilTransactions::scanReadRecords(Ndb* pNdb,
if
(
pOp
->
readTuples
(
lm
,
0
,
parallelism
)
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
check
=
pOp
->
interpret_exit_ok
();
if
(
check
==
-
1
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
...
...
@@ -408,7 +408,7 @@ UtilTransactions::scanReadRecords(Ndb* pNdb,
if
((
row
.
attributeStore
(
attrib_list
[
a
])
=
pOp
->
getValue
(
tab
.
getColumn
(
attrib_list
[
a
])
->
getName
()))
==
0
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
}
...
...
@@ -421,13 +421,13 @@ UtilTransactions::scanReadRecords(Ndb* pNdb,
if
(
err
.
status
==
NdbError
::
TemporaryError
){
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
NdbSleep_MilliSleep
(
50
);
retryAttempt
++
;
continue
;
}
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
...
...
@@ -447,17 +447,17 @@ UtilTransactions::scanReadRecords(Ndb* pNdb,
if
(
err
.
status
==
NdbError
::
TemporaryError
){
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
NdbSleep_MilliSleep
(
50
);
retryAttempt
++
;
continue
;
}
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
g_info
<<
rows
<<
" rows have been read"
<<
endl
;
if
(
records
!=
0
&&
rows
!=
records
){
g_info
<<
"Check expected number of records failed"
<<
endl
...
...
@@ -496,13 +496,13 @@ UtilTransactions::selectCount(Ndb* pNdb,
pOp
=
getScanOperation
(
pTrans
);
if
(
pOp
==
NULL
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
if
(
pOp
->
readTuples
(
lm
)
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
...
...
@@ -515,7 +515,7 @@ UtilTransactions::selectCount(Ndb* pNdb,
check
=
pOp
->
interpret_exit_ok
();
if
(
check
==
-
1
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
}
...
...
@@ -524,7 +524,7 @@ UtilTransactions::selectCount(Ndb* pNdb,
check
=
pTrans
->
execute
(
NoCommit
);
if
(
check
==
-
1
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
...
...
@@ -539,17 +539,17 @@ UtilTransactions::selectCount(Ndb* pNdb,
const
NdbError
err
=
pTrans
->
getNdbError
();
if
(
err
.
status
==
NdbError
::
TemporaryError
){
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
NdbSleep_MilliSleep
(
50
);
retryAttempt
++
;
continue
;
}
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
if
(
count_rows
!=
NULL
){
*
count_rows
=
rows
;
...
...
@@ -653,7 +653,7 @@ UtilTransactions::scanAndCompareUniqueIndex(Ndb* pNdb,
pOp
=
pTrans
->
getNdbScanOperation
(
tab
.
getName
());
if
(
pOp
==
NULL
)
{
const
NdbError
err
=
pNdb
->
getNdbError
();
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
ERR
(
err
);
if
(
err
.
status
==
NdbError
::
TemporaryError
){
...
...
@@ -673,14 +673,14 @@ UtilTransactions::scanAndCompareUniqueIndex(Ndb* pNdb,
if
(
rs
!=
0
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
check
=
pOp
->
interpret_exit_ok
();
if
(
check
==
-
1
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
...
...
@@ -689,7 +689,7 @@ UtilTransactions::scanAndCompareUniqueIndex(Ndb* pNdb,
if
((
row
.
attributeStore
(
a
)
=
pOp
->
getValue
(
tab
.
getColumn
(
a
)
->
getName
()))
==
0
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
}
...
...
@@ -700,13 +700,13 @@ UtilTransactions::scanAndCompareUniqueIndex(Ndb* pNdb,
if
(
err
.
status
==
NdbError
::
TemporaryError
){
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
NdbSleep_MilliSleep
(
50
);
retryAttempt
++
;
continue
;
}
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
...
...
@@ -733,13 +733,13 @@ UtilTransactions::scanAndCompareUniqueIndex(Ndb* pNdb,
if
(
err
.
status
==
NdbError
::
TemporaryError
){
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
NdbSleep_MilliSleep
(
50
);
retryAttempt
++
;
goto
restart
;
}
}
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
}
...
...
@@ -748,17 +748,17 @@ UtilTransactions::scanAndCompareUniqueIndex(Ndb* pNdb,
if
(
err
.
status
==
NdbError
::
TemporaryError
){
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
NdbSleep_MilliSleep
(
50
);
retryAttempt
++
;
continue
;
}
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_OK
;
}
...
...
@@ -1057,20 +1057,20 @@ UtilTransactions::verifyOrderedIndex(Ndb* pNdb,
pOp
=
pTrans
->
getNdbScanOperation
(
tab
.
getName
());
if
(
pOp
==
NULL
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
if
(
pOp
->
readTuples
(
NdbScanOperation
::
LM_Read
,
0
,
parallelism
)
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
check
=
pOp
->
interpret_exit_ok
();
if
(
check
==
-
1
)
{
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
...
...
@@ -1085,13 +1085,13 @@ UtilTransactions::verifyOrderedIndex(Ndb* pNdb,
if
(
err
.
status
==
NdbError
::
TemporaryError
){
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
NdbSleep_MilliSleep
(
50
);
retryAttempt
++
;
continue
;
}
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
...
...
@@ -1146,7 +1146,7 @@ UtilTransactions::verifyOrderedIndex(Ndb* pNdb,
g_err
<<
"Error when comapring records"
<<
endl
;
g_err
<<
" scanRow:
\n
"
<<
scanRow
.
c_str
().
c_str
()
<<
endl
;
g_err
<<
" pkRow:
\n
"
<<
pkRow
.
c_str
().
c_str
()
<<
endl
;
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
...
...
@@ -1156,7 +1156,7 @@ UtilTransactions::verifyOrderedIndex(Ndb* pNdb,
if
((
res
=
iop
->
nextResult
())
!=
0
){
g_err
<<
"Failed to find row using index: "
<<
res
<<
endl
;
ERR
(
pTrans
->
getNdbError
());
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
...
...
@@ -1164,14 +1164,14 @@ UtilTransactions::verifyOrderedIndex(Ndb* pNdb,
g_err
<<
"Error when comapring records"
<<
endl
;
g_err
<<
" scanRow:
\n
"
<<
scanRow
.
c_str
().
c_str
()
<<
endl
;
g_err
<<
" indexRow:
\n
"
<<
indexRow
.
c_str
().
c_str
()
<<
endl
;
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
if
(
iop
->
nextResult
()
==
0
){
g_err
<<
"Found extra row!!"
<<
endl
;
g_err
<<
" indexRow:
\n
"
<<
indexRow
.
c_str
().
c_str
()
<<
endl
;
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
}
...
...
@@ -1184,18 +1184,18 @@ UtilTransactions::verifyOrderedIndex(Ndb* pNdb,
if
(
err
.
status
==
NdbError
::
TemporaryError
){
ERR
(
err
);
iop
=
0
;
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
NdbSleep_MilliSleep
(
50
);
retryAttempt
++
;
rows
--
;
continue
;
}
ERR
(
err
);
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_FAILED
;
}
pNdb
->
closeTransaction
(
pTrans
);
closeTransaction
(
pNdb
);
return
NDBT_OK
;
}
...
...
@@ -1303,6 +1303,16 @@ UtilTransactions::getOperation(NdbConnection* pTrans,
#include <HugoOperations.hpp>
int
UtilTransactions
::
closeTransaction
(
Ndb
*
pNdb
)
{
if
(
pTrans
!=
NULL
){
pNdb
->
closeTransaction
(
pTrans
);
pTrans
=
NULL
;
}
return
0
;
}
int
UtilTransactions
::
compare
(
Ndb
*
pNdb
,
const
char
*
tab_name2
,
int
flags
){
...
...
@@ -1313,7 +1323,6 @@ UtilTransactions::compare(Ndb* pNdb, const char* tab_name2, int flags){
HugoCalculator
calc
(
tab
);
NDBT_ResultRow
row
(
tab
);
NdbTransaction
*
pTrans
=
0
;
const
NdbDictionary
::
Table
*
tmp
=
pNdb
->
getDictionary
()
->
getTable
(
tab_name2
);
if
(
tmp
==
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