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
f527479f
Commit
f527479f
authored
May 15, 2007
by
tomas@whalegate.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-single-user
parents
60e28cc9
b027b84a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
9 deletions
+19
-9
storage/ndb/include/mgmapi/ndbd_exit_codes.h
storage/ndb/include/mgmapi/ndbd_exit_codes.h
+1
-1
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
+18
-8
No files found.
storage/ndb/include/mgmapi/ndbd_exit_codes.h
View file @
f527479f
...
...
@@ -78,9 +78,9 @@ typedef ndbd_exit_classification_enum ndbd_exit_classification;
#define NDBD_EXIT_SR_RESTARTCONFLICT 2311
#define NDBD_EXIT_NO_MORE_UNDOLOG 2312
#define NDBD_EXIT_SR_UNDOLOG 2313
#define NDBD_EXIT_SR_SCHEMAFILE 2310
#define NDBD_EXIT_SINGLE_USER_MODE 2314
#define NDBD_EXIT_NODE_DECLARED_DEAD 2315
#define NDBD_EXIT_SR_SCHEMAFILE 2316
#define NDBD_EXIT_MEMALLOC 2327
#define NDBD_EXIT_BLOCK_JBUFCONGESTION 2334
#define NDBD_EXIT_TIME_QUEUE_SHORT 2335
...
...
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
View file @
f527479f
...
...
@@ -1371,14 +1371,24 @@ void Dbdict::readSchemaConf(Signal* signal,
for
(
Uint32
n
=
0
;
n
<
xsf
->
noOfPages
;
n
++
)
{
SchemaFile
*
sf
=
&
xsf
->
schemaPage
[
n
];
bool
ok
=
memcmp
(
sf
->
Magic
,
NDB_SF_MAGIC
,
sizeof
(
sf
->
Magic
))
==
0
&&
sf
->
FileSize
!=
0
&&
sf
->
FileSize
%
NDB_SF_PAGE_SIZE
==
0
&&
sf
->
FileSize
==
sf0
->
FileSize
&&
sf
->
PageNumber
==
n
&&
computeChecksum
((
Uint32
*
)
sf
,
NDB_SF_PAGE_SIZE_IN_WORDS
)
==
0
;
ndbrequireErr
(
ok
||
!
crashInd
,
NDBD_EXIT_SR_SCHEMAFILE
);
bool
ok
=
false
;
if
(
memcmp
(
sf
->
Magic
,
NDB_SF_MAGIC
,
sizeof
(
sf
->
Magic
))
!=
0
)
{
jam
();
}
else
if
(
sf
->
FileSize
==
0
)
{
jam
();
}
else
if
(
sf
->
FileSize
%
NDB_SF_PAGE_SIZE
!=
0
)
{
jam
();
}
else
if
(
sf
->
FileSize
!=
sf0
->
FileSize
)
{
jam
();
}
else
if
(
sf
->
PageNumber
!=
n
)
{
jam
();
}
else
if
(
computeChecksum
((
Uint32
*
)
sf
,
NDB_SF_PAGE_SIZE_IN_WORDS
)
!=
0
)
{
jam
();
}
else
if
(
crashInd
)
{
jam
();
}
else
ok
=
true
;
ndbrequireErr
(
ok
,
NDBD_EXIT_SR_SCHEMAFILE
);
if
(
!
ok
)
{
jam
();
ndbrequireErr
(
fsPtr
.
p
->
fsState
==
FsConnectRecord
::
READ_SCHEMA1
,
...
...
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