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
fd11f4a1
Commit
fd11f4a1
authored
Aug 01, 2004
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix uninit var.
Fix error printout
parent
466992fb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
ndb/src/kernel/blocks/dbtc/Dbtc.hpp
ndb/src/kernel/blocks/dbtc/Dbtc.hpp
+6
-1
ndb/src/mgmsrv/main.cpp
ndb/src/mgmsrv/main.cpp
+1
-1
No files found.
ndb/src/kernel/blocks/dbtc/Dbtc.hpp
View file @
fd11f4a1
...
@@ -998,7 +998,12 @@ public:
...
@@ -998,7 +998,12 @@ public:
* It will receive max 16 tuples in each request
* It will receive max 16 tuples in each request
*/
*/
struct
ScanFragRec
{
struct
ScanFragRec
{
ScanFragRec
(){}
ScanFragRec
(){
stopFragTimer
();
lqhBlockref
=
0
;
scanFragState
=
IDLE
;
scanRec
=
RNIL
;
}
/**
/**
* ScanFragState
* ScanFragState
* WAIT_GET_PRIMCONF : Waiting for DIGETPRIMCONF when starting a new
* WAIT_GET_PRIMCONF : Waiting for DIGETPRIMCONF when starting a new
...
...
ndb/src/mgmsrv/main.cpp
View file @
fd11f4a1
...
@@ -187,7 +187,7 @@ NDB_MAIN(mgmsrv){
...
@@ -187,7 +187,7 @@ NDB_MAIN(mgmsrv){
"Please check if the port is already used,
\n
"
"Please check if the port is already used,
\n
"
"(perhaps a mgmtsrvr is already running),
\n
"
"(perhaps a mgmtsrvr is already running),
\n
"
"and if you are executing on the correct computer"
,
"and if you are executing on the correct computer"
,
glob
.
interface_name
,
glob
.
port
);
(
glob
.
interface_name
?
glob
.
interface_name
:
"*"
)
,
glob
.
port
);
goto
error_end
;
goto
error_end
;
}
}
free
(
glob
.
interface_name
);
free
(
glob
.
interface_name
);
...
...
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