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
27a0d35c
Commit
27a0d35c
authored
Feb 10, 2006
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge perch.ndb.mysql.com:/home/jonas/src/50-work
into perch.ndb.mysql.com:/home/jonas/src/51-new
parents
3c164107
84ed332f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
4 deletions
+38
-4
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
+13
-1
storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
+25
-3
No files found.
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
View file @
27a0d35c
...
...
@@ -2992,7 +2992,19 @@ Dbdict::restartCreateTab_readTableConf(Signal* signal,
Uint32
sz
=
c_readTableRecord
.
no_of_words
;
SimplePropertiesLinearReader
r
(
pageRecPtr
.
p
->
word
+
ZPAGE_HEADER_SIZE
,
sz
);
handleTabInfoInit
(
r
,
&
parseRecord
);
ndbrequire
(
parseRecord
.
errorCode
==
0
);
if
(
parseRecord
.
errorCode
!=
0
)
{
char
buf
[
255
];
BaseString
::
snprintf
(
buf
,
sizeof
(
buf
),
"Unable to restart, fail while creating table %d"
" error: %d. Most likely change of configuration"
,
c_readTableRecord
.
tableId
,
parseRecord
.
errorCode
);
progError
(
__LINE__
,
ERR_INVALID_CONFIG
,
buf
);
ndbrequire
(
parseRecord
.
errorCode
==
0
);
}
/* ---------------------------------------------------------------- */
// We have read the table description from disk as part of system restart.
...
...
storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
View file @
27a0d35c
...
...
@@ -14743,7 +14743,9 @@ void Dblqh::execSr(Signal* signal)
signal
->
theData
[
4
]
=
logFilePtr
.
p
->
currentFilepage
;
signal
->
theData
[
5
]
=
logFilePtr
.
p
->
currentMbyte
;
signal
->
theData
[
6
]
=
logPagePtr
.
p
->
logPageWord
[
ZCURR_PAGE_INDEX
];
sendSignal
(
cownref
,
GSN_DEBUG_SIG
,
signal
,
7
,
JBA
);
signal
->
theData
[
7
]
=
~
0
;
signal
->
theData
[
8
]
=
__LINE__
;
sendSignal
(
cownref
,
GSN_DEBUG_SIG
,
signal
,
9
,
JBA
);
return
;
}
//if
}
//if
...
...
@@ -14809,7 +14811,8 @@ void Dblqh::execSr(Signal* signal)
signal
->
theData
[
5
]
=
logFilePtr
.
p
->
currentFilepage
;
signal
->
theData
[
6
]
=
logPagePtr
.
p
->
logPageWord
[
ZCURR_PAGE_INDEX
];
signal
->
theData
[
7
]
=
logWord
;
sendSignal
(
cownref
,
GSN_DEBUG_SIG
,
signal
,
8
,
JBA
);
signal
->
theData
[
8
]
=
__LINE__
;
sendSignal
(
cownref
,
GSN_DEBUG_SIG
,
signal
,
9
,
JBA
);
return
;
break
;
}
//switch
...
...
@@ -14838,8 +14841,9 @@ void Dblqh::execDEBUG_SIG(Signal* signal)
char
buf
[
100
];
BaseString
::
snprintf
(
buf
,
100
,
"Error while reading REDO log.
\n
"
"Error while reading REDO log.
from %d
\n
"
"D=%d, F=%d Mb=%d FP=%d W1=%d W2=%d"
,
signal
->
theData
[
8
],
signal
->
theData
[
2
],
signal
->
theData
[
3
],
signal
->
theData
[
4
],
signal
->
theData
[
5
],
signal
->
theData
[
6
],
signal
->
theData
[
7
]);
...
...
@@ -15422,6 +15426,10 @@ void Dblqh::readSrFourthZeroLab(Signal* signal)
// to read a page from file.
lfoPtr
.
p
->
lfoState
=
LogFileOperationRecord
::
WRITE_SR_INVALIDATE_PAGES
;
/**
* Make sure we dont release zero page
*/
seizeLogpage
(
signal
);
invalidateLogAfterLastGCI
(
signal
);
return
;
}
//Dblqh::readSrFourthZeroLab()
...
...
@@ -16026,8 +16034,22 @@ void Dblqh::findLogfile(Signal* signal,
}
//if
locLogFilePtr
.
i
=
locLogFilePtr
.
p
->
nextLogFile
;
loopCount
++
;
if
(
loopCount
>=
flfLogPartPtr
.
p
->
noLogFiles
&&
getNodeState
().
startLevel
!=
NodeState
::
SL_STARTED
)
{
goto
error
;
}
ndbrequire
(
loopCount
<
flfLogPartPtr
.
p
->
noLogFiles
);
}
//while
error:
char
buf
[
255
];
BaseString
::
snprintf
(
buf
,
sizeof
(
buf
),
"Unable to restart, failed while reading redo."
" Likely invalid change of configuration"
);
progError
(
__LINE__
,
ERR_INVALID_CONFIG
,
buf
);
}
//Dblqh::findLogfile()
/* ------------------------------------------------------------------------- */
...
...
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