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
f8d8c2ba
Commit
f8d8c2ba
authored
Jan 11, 2005
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb compile warnings
parent
fd701052
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
28 additions
and
31 deletions
+28
-31
ndb/test/include/NDBT_Test.hpp
ndb/test/include/NDBT_Test.hpp
+1
-1
ndb/test/ndbapi/bank/BankLoad.cpp
ndb/test/ndbapi/bank/BankLoad.cpp
+2
-2
ndb/test/ndbapi/testOIBasic.cpp
ndb/test/ndbapi/testOIBasic.cpp
+5
-5
ndb/test/src/HugoCalculator.cpp
ndb/test/src/HugoCalculator.cpp
+3
-5
ndb/test/src/NDBT_Test.cpp
ndb/test/src/NDBT_Test.cpp
+1
-2
ndb/test/src/NdbBackup.cpp
ndb/test/src/NdbBackup.cpp
+1
-1
ndb/test/src/NdbRestarts.cpp
ndb/test/src/NdbRestarts.cpp
+15
-15
No files found.
ndb/test/include/NDBT_Test.hpp
View file @
f8d8c2ba
...
...
@@ -429,7 +429,7 @@ C##suitname():NDBT_TestSuite(#suitname){ \
pt->addTable(tableName, false);
#define NDBT_TESTSUITE_END(suitname) \
} } ; C##suitname suitname
;
} } ; C##suitname suitname
// Helper functions for retrieving variables from NDBT_Step
#define GETNDB(ps) ((NDBT_NdbApiStep*)ps)->getNdb()
...
...
ndb/test/ndbapi/bank/BankLoad.cpp
View file @
f8d8c2ba
...
...
@@ -321,7 +321,7 @@ int Bank::loadGl(){
m_ndb
.
closeTransaction
(
pTrans
);
return
NDBT_OK
;
}
;
}
int
Bank
::
getBalanceForAccountType
(
const
Uint32
accountType
,
...
...
@@ -459,7 +459,7 @@ int Bank::loadAccountType(){
m_ndb
.
closeTransaction
(
pTrans
);
return
NDBT_OK
;
}
;
}
/**
* Load ACCOUNT table
...
...
ndb/test/ndbapi/testOIBasic.cpp
View file @
f8d8c2ba
...
...
@@ -3127,7 +3127,7 @@ pkinsert(Par par)
}
con
.
closeTransaction
();
return
0
;
}
;
}
static
int
pkupdate
(
Par
par
)
...
...
@@ -3183,7 +3183,7 @@ pkupdate(Par par)
}
con
.
closeTransaction
();
return
0
;
}
;
}
static
int
pkdelete
(
Par
par
)
...
...
@@ -3235,7 +3235,7 @@ pkdelete(Par par)
}
con
.
closeTransaction
();
return
0
;
}
;
}
static
int
pkread
(
Par
par
)
...
...
@@ -3349,7 +3349,7 @@ hashindexupdate(Par par, const ITab& itab)
}
con
.
closeTransaction
();
return
0
;
}
;
}
static
int
hashindexdelete
(
Par
par
,
const
ITab
&
itab
)
...
...
@@ -3400,7 +3400,7 @@ hashindexdelete(Par par, const ITab& itab)
}
con
.
closeTransaction
();
return
0
;
}
;
}
static
int
hashindexread
(
Par
par
,
const
ITab
&
itab
)
...
...
ndb/test/src/HugoCalculator.cpp
View file @
f8d8c2ba
...
...
@@ -52,7 +52,7 @@ HugoCalculator::HugoCalculator(const NdbDictionary::Table& tab) : m_tab(tab) {
#endif
// Check that idCol is not conflicting with updatesCol
assert
(
m_idCol
!=
m_updatesCol
&&
m_idCol
!=
-
1
&&
m_updatesCol
!=
-
1
);
}
;
}
Int32
HugoCalculator
::
calcValue
(
int
record
,
...
...
@@ -74,7 +74,7 @@ HugoCalculator::calcValue(int record,
else
val
=
record
+
attrib
+
updates
;
return
val
;
}
;
}
#if 0
HugoCalculator::U_Int32 calcValue(int record, int attrib, int updates) const;
HugoCalculator::U_Int64 calcValue(int record, int attrib, int updates) const;
...
...
@@ -109,8 +109,6 @@ HugoCalculator::calcValue(int record,
// Calculate length of the string to create. We want the string
// length to be varied between max and min of this attribute.
Uint32
org
=
len
;
if
(
attr
->
getType
()
==
NdbDictionary
::
Column
::
Varchar
)
len
=
val
%
(
len
+
1
);
else
...
...
@@ -137,7 +135,7 @@ HugoCalculator::calcValue(int record,
}
}
return
buf
;
}
;
}
int
HugoCalculator
::
verifyRowValues
(
NDBT_ResultRow
*
const
pRow
)
const
{
...
...
ndb/test/src/NDBT_Test.cpp
View file @
f8d8c2ba
...
...
@@ -617,8 +617,7 @@ int NDBT_TestCase::execute(NDBT_Context* ctx){
<<
endl
;
}
return
res
;
};
}
void
NDBT_TestCase
::
startTimer
(
NDBT_Context
*
ctx
){
timer
.
doStart
();
...
...
ndb/test/src/NdbBackup.cpp
View file @
f8d8c2ba
...
...
@@ -336,7 +336,7 @@ NdbBackup::NF(NdbRestarter& _restarter, int *NFDuringBackup_codes, const int sz,
}
return
NDBT_OK
;
}
;
}
int
FailS_codes
[]
=
{
...
...
ndb/test/src/NdbRestarts.cpp
View file @
f8d8c2ba
...
...
@@ -213,7 +213,7 @@ NdbRestarts::NdbRestart::NdbRestart(const char* _name,
m_restartFunc
=
_func
;
m_numRequiredNodes
=
_requiredNodes
;
// m_arg1 = arg1;
}
;
}
int
NdbRestarts
::
getNumRestarts
(){
...
...
@@ -367,7 +367,7 @@ int restartRandomNodeGraceful(NdbRestarter& _restarter,
"Could not restart node "
<<
nodeId
);
return
NDBT_OK
;
}
;
}
int
restartRandomNodeAbort
(
NdbRestarter
&
_restarter
,
const
NdbRestarts
::
NdbRestart
*
_restart
){
...
...
@@ -382,7 +382,7 @@ int restartRandomNodeAbort(NdbRestarter& _restarter,
"Could not restart node "
<<
nodeId
);
return
NDBT_OK
;
}
;
}
int
restartRandomNodeError
(
NdbRestarter
&
_restarter
,
const
NdbRestarts
::
NdbRestart
*
_restart
){
...
...
@@ -397,7 +397,7 @@ int restartRandomNodeError(NdbRestarter& _restarter,
"Could not restart node "
<<
nodeId
);
return
NDBT_OK
;
}
;
}
int
restartMasterNodeError
(
NdbRestarter
&
_restarter
,
const
NdbRestarts
::
NdbRestart
*
_restart
){
...
...
@@ -410,7 +410,7 @@ int restartMasterNodeError(NdbRestarter& _restarter,
"Could not restart node "
<<
nodeId
);
return
NDBT_OK
;
}
;
}
int
restartRandomNodeInitial
(
NdbRestarter
&
_restarter
,
const
NdbRestarts
::
NdbRestart
*
_restart
){
...
...
@@ -425,7 +425,7 @@ int restartRandomNodeInitial(NdbRestarter& _restarter,
"Could not restart node "
<<
nodeId
);
return
NDBT_OK
;
}
;
}
int
twoNodeFailure
(
NdbRestarter
&
_restarter
,
const
NdbRestarts
::
NdbRestart
*
_restart
){
...
...
@@ -453,7 +453,7 @@ int twoNodeFailure(NdbRestarter& _restarter,
"Could not restart node "
<<
nodeId
);
return
NDBT_OK
;
}
;
}
int
twoMasterNodeFailure
(
NdbRestarter
&
_restarter
,
const
NdbRestarts
::
NdbRestart
*
_restart
){
...
...
@@ -478,7 +478,7 @@ int twoMasterNodeFailure(NdbRestarter& _restarter,
"Could not restart node "
<<
nodeId
);
return
NDBT_OK
;
}
;
}
int
get50PercentOfNodes
(
NdbRestarter
&
restarter
,
int
*
_nodes
){
...
...
@@ -519,7 +519,7 @@ int fiftyPercentFail(NdbRestarter& _restarter,
"Could not start all nodes"
);
return
NDBT_OK
;
}
;
}
int
restartAllNodesGracfeul
(
NdbRestarter
&
_restarter
,
...
...
@@ -533,7 +533,7 @@ int restartAllNodesGracfeul(NdbRestarter& _restarter,
return
NDBT_OK
;
}
;
}
int
restartAllNodesAbort
(
NdbRestarter
&
_restarter
,
const
NdbRestarts
::
NdbRestart
*
_restart
){
...
...
@@ -545,7 +545,7 @@ int restartAllNodesAbort(NdbRestarter& _restarter,
"Could not restart all nodes"
);
return
NDBT_OK
;
}
;
}
int
restartAllNodesError9999
(
NdbRestarter
&
_restarter
,
const
NdbRestarts
::
NdbRestart
*
_restart
){
...
...
@@ -557,7 +557,7 @@ int restartAllNodesError9999(NdbRestarter& _restarter,
"Could not restart all nodes "
);
return
NDBT_OK
;
}
;
}
int
fiftyPercentStopAndWait
(
NdbRestarter
&
_restarter
,
const
NdbRestarts
::
NdbRestart
*
_restart
){
...
...
@@ -590,7 +590,7 @@ int fiftyPercentStopAndWait(NdbRestarter& _restarter,
g_info
<<
_restart
->
m_name
<<
endl
;
return
NDBT_OK
;
}
;
}
int
NFDuringNR_codes
[]
=
{
...
...
@@ -713,7 +713,7 @@ int restartNFDuringNR(NdbRestarter& _restarter,
}
return
NDBT_OK
;
}
;
}
int
NRDuringLCP_Master_codes
[]
=
{
...
...
@@ -864,7 +864,7 @@ int stopOnError(NdbRestarter& _restarter,
}
while
(
false
);
return
NDBT_OK
;
}
;
}
int
getRandomNodeId
(
NdbRestarter
&
_restarter
)
{
myRandom48Init
(
NdbTick_CurrentMillisecond
());
...
...
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