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
a9d67fde
Commit
a9d67fde
authored
Mar 22, 2006
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb -
post merge fixes
parent
612e2201
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
ndb/include/mgmapi/ndbd_exit_codes.h
ndb/include/mgmapi/ndbd_exit_codes.h
+0
-2
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
+1
-1
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
+0
-1
ndb/src/kernel/error/ndbd_exit_codes.c
ndb/src/kernel/error/ndbd_exit_codes.c
+3
-0
ndb/tools/desc.cpp
ndb/tools/desc.cpp
+4
-4
No files found.
ndb/include/mgmapi/ndbd_exit_codes.h
View file @
a9d67fde
...
...
@@ -74,9 +74,7 @@ typedef ndbd_exit_classification_enum ndbd_exit_classification;
#define NDBD_EXIT_SR_OTHERNODEFAILED 2308
#define NDBD_EXIT_NODE_NOT_DEAD 2309
#define NDBD_EXIT_SR_REDOLOG 2310
/*
#define NDBD_EXIT_SR_RESTARTCONFLICT 2311
*/
#define NDBD_EXIT_NO_MORE_UNDOLOG 2312
#define NDBD_EXIT_SR_UNDOLOG 2313
#define NDBD_EXIT_MEMALLOC 2327
...
...
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
View file @
a9d67fde
...
...
@@ -1610,7 +1610,7 @@ void Dbdih::execSTART_PERMREF(Signal* signal)
" with --initial as partial start has been performed"
" and this filesystem is unusable"
);
progError
(
__LINE__
,
ERR
_SR_RESTARTCONFLICT
,
NDBD_EXIT
_SR_RESTARTCONFLICT
,
buf
);
ndbrequire
(
false
);
}
...
...
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
View file @
a9d67fde
...
...
@@ -18572,7 +18572,6 @@ Dblqh::execDUMP_STATE_ORD(Signal* signal)
TcConnectionrec
*
regTcConnectionrec
=
tcConnectionrec
;
Uint32
ttcConnectrecFileSize
=
ctcConnectrecFileSize
;
Uint32
arg
=
dumpState
->
args
[
0
];
if
(
arg
==
2306
)
{
for
(
Uint32
i
=
0
;
i
<
1024
;
i
++
)
...
...
ndb/src/kernel/error/ndbd_exit_codes.c
View file @
a9d67fde
...
...
@@ -85,6 +85,9 @@ static const ErrStruct errArray[] =
*/
{
NDBD_EXIT_OS_SIGNAL_RECEIVED
,
XIE
,
"Error OS signal received"
},
{
NDBD_EXIT_SR_RESTARTCONFLICT
,
XRE
,
"Partial system restart causing conflicting file systems"
},
/* VM */
{
NDBD_EXIT_OUT_OF_LONG_SIGNAL_MEMORY
,
XCR
,
"Signal lost, out of long signal memory, please increase LongMessageBuffer"
},
...
...
ndb/tools/desc.cpp
View file @
a9d67fde
...
...
@@ -119,7 +119,7 @@ int main(int argc, char** argv){
ndbout
<<
endl
;
if
(
_partinfo
)
print_part_info
(
p
MyNdb
,
pTab
);
print_part_info
(
&
MyNdb
,
pTab
);
}
else
ndbout
<<
argv
[
i
]
<<
": "
<<
dict
->
getNdbError
()
<<
endl
;
...
...
@@ -159,8 +159,8 @@ void print_part_info(Ndb* pNdb, NDBT_Table* pTab)
if
(
pOp
==
NULL
)
break
;
NdbResultSet
*
rs
=
pOp
->
readTuples
(
NdbOperation
::
LM_CommittedRead
);
if
(
rs
=
=
0
)
int
rs
=
pOp
->
readTuples
(
NdbOperation
::
LM_CommittedRead
);
if
(
rs
!
=
0
)
break
;
if
(
pOp
->
interpret_exit_last_row
()
!=
0
)
...
...
@@ -183,7 +183,7 @@ void print_part_info(Ndb* pNdb, NDBT_Table* pTab)
ndbout
<<
g_part_info
[
i
].
m_title
<<
"
\t
"
;
ndbout
<<
endl
;
while
(
rs
->
nextResult
()
==
0
)
while
(
pOp
->
nextResult
()
==
0
)
{
for
(
i
=
0
;
g_part_info
[
i
].
m_title
!=
0
;
i
++
)
{
...
...
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