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
70bca251
Commit
70bca251
authored
Aug 19, 2004
by
tomas@poseidon.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes for some compile problems on some platforms
parent
1ec6cb1c
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
15 additions
and
5 deletions
+15
-5
ndb/src/mgmsrv/MgmtSrvr.cpp
ndb/src/mgmsrv/MgmtSrvr.cpp
+1
-1
ndb/src/ndbapi/NdbScanOperation.cpp
ndb/src/ndbapi/NdbScanOperation.cpp
+0
-2
ndb/test/ndbapi/testIndex.cpp
ndb/test/ndbapi/testIndex.cpp
+1
-1
ndb/test/ndbapi/testNdbApi.cpp
ndb/test/ndbapi/testNdbApi.cpp
+2
-1
ndb/test/ndbapi/testRestartGci.cpp
ndb/test/ndbapi/testRestartGci.cpp
+2
-0
ndb/test/ndbapi/testScan.cpp
ndb/test/ndbapi/testScan.cpp
+1
-0
ndb/test/run-test/main.cpp
ndb/test/run-test/main.cpp
+4
-0
ndb/test/src/HugoOperations.cpp
ndb/test/src/HugoOperations.cpp
+2
-0
ndb/test/tools/cpcc.cpp
ndb/test/tools/cpcc.cpp
+2
-0
No files found.
ndb/src/mgmsrv/MgmtSrvr.cpp
View file @
70bca251
...
...
@@ -2835,7 +2835,7 @@ MgmtSrvr::setDbParameter(int node, int param, const char * value,
p_type
++
;
if
(
iter
.
get
(
param
,
&
val_64
)
==
0
){
val_64
=
atoll
(
value
);
val_64
=
strtoll
(
value
,
0
,
10
);
break
;
}
p_type
++
;
...
...
ndb/src/ndbapi/NdbScanOperation.cpp
View file @
70bca251
...
...
@@ -661,8 +661,6 @@ NdbScanOperation::doSend(int ProcessorId)
void
NdbScanOperation
::
closeScan
()
{
int
self
=
pthread_self
()
;
if
(
m_transConnection
)
do
{
if
(
DEBUG_NEXT_RESULT
)
ndbout_c
(
"closeScan() theError.code = %d "
...
...
ndb/test/ndbapi/testIndex.cpp
View file @
70bca251
...
...
@@ -1529,4 +1529,4 @@ int main(int argc, const char** argv){
return
testIndex
.
execute
(
argc
,
argv
);
}
template
class
Vector
<
Attrib
*
>;
ndb/test/ndbapi/testNdbApi.cpp
View file @
70bca251
...
...
@@ -1010,4 +1010,5 @@ int main(int argc, const char** argv){
return
testNdbApi
.
execute
(
argc
,
argv
);
}
template
class
Vector
<
Ndb
*
>;
template
class
Vector
<
NdbConnection
*
>;
ndb/test/ndbapi/testRestartGci.cpp
View file @
70bca251
...
...
@@ -216,3 +216,5 @@ NDBT_TESTSUITE_END(testRestartGci);
int
main
(
int
argc
,
const
char
**
argv
){
return
testRestartGci
.
execute
(
argc
,
argv
);
}
template
class
Vector
<
SavedRecord
>;
ndb/test/ndbapi/testScan.cpp
View file @
70bca251
...
...
@@ -1404,3 +1404,4 @@ int main(int argc, const char** argv){
return
testScan
.
execute
(
argc
,
argv
);
}
template
class
Vector
<
Attrib
*
>;
ndb/test/run-test/main.cpp
View file @
70bca251
...
...
@@ -988,3 +988,7 @@ setup_hosts(atrt_config& config){
}
template
class
Vector
<
const
ParserRow
<
SimpleCpcClient
::
ParserDummy
>
*>
;
template
class
Vector
<
SimpleCpcClient
::
Process
>;
template
class
Vector
<
Vector
<
SimpleCpcClient
::
Process
>
>
;
template
class
Vector
<
atrt_host
>;
template
class
Vector
<
atrt_process
>;
ndb/test/src/HugoOperations.cpp
View file @
70bca251
...
...
@@ -796,3 +796,5 @@ HugoOperations::scanReadRecords(Ndb* pNdb, NdbScanOperation::LockMode lm,
return
0
;
}
template
class
Vector
<
HugoOperations
::
RsPair
>;
ndb/test/tools/cpcc.cpp
View file @
70bca251
...
...
@@ -348,3 +348,5 @@ Operate::evaluate(SimpleCpcClient* c, const SimpleCpcClient::Process & pp){
}
template
class
Vector
<
const
ParserRow
<
SimpleCpcClient
::
ParserDummy
>
*>
;
template
class
Vector
<
Expression
*
>;
template
class
Vector
<
SimpleCpcClient
*
>;
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