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
ef01ad4d
Commit
ef01ad4d
authored
Aug 04, 2006
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb - bug#21044
report only once on "all dump 1000"
parent
964bf6d5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
storage/ndb/src/kernel/blocks/dbacc/DbaccMain.cpp
storage/ndb/src/kernel/blocks/dbacc/DbaccMain.cpp
+3
-2
storage/ndb/src/kernel/blocks/dbtup/DbtupDebug.cpp
storage/ndb/src/kernel/blocks/dbtup/DbtupDebug.cpp
+1
-1
No files found.
storage/ndb/src/kernel/blocks/dbacc/DbaccMain.cpp
View file @
ef01ad4d
...
@@ -8312,11 +8312,12 @@ Dbacc::execDUMP_STATE_ORD(Signal* signal)
...
@@ -8312,11 +8312,12 @@ Dbacc::execDUMP_STATE_ORD(Signal* signal)
return
;
return
;
}
}
if
(
dumpState
->
args
[
0
]
==
DumpStateOrd
::
DumpPageMemory
){
if
(
dumpState
->
args
[
0
]
==
DumpStateOrd
::
DumpPageMemory
&&
signal
->
getLength
()
==
1
){
reportMemoryUsage
(
signal
,
0
);
reportMemoryUsage
(
signal
,
0
);
return
;
return
;
}
}
if
(
dumpState
->
args
[
0
]
==
DumpStateOrd
::
EnableUndoDelayDataWrite
){
if
(
dumpState
->
args
[
0
]
==
DumpStateOrd
::
EnableUndoDelayDataWrite
){
ndbout
<<
"Dbacc:: delay write of datapages for table = "
ndbout
<<
"Dbacc:: delay write of datapages for table = "
<<
dumpState
->
args
[
1
]
<<
endl
;
<<
dumpState
->
args
[
1
]
<<
endl
;
...
...
storage/ndb/src/kernel/blocks/dbtup/DbtupDebug.cpp
View file @
ef01ad4d
...
@@ -81,7 +81,7 @@ void
...
@@ -81,7 +81,7 @@ void
Dbtup
::
execDUMP_STATE_ORD
(
Signal
*
signal
)
Dbtup
::
execDUMP_STATE_ORD
(
Signal
*
signal
)
{
{
Uint32
type
=
signal
->
theData
[
0
];
Uint32
type
=
signal
->
theData
[
0
];
if
(
type
==
DumpStateOrd
::
DumpPageMemory
){
if
(
type
==
DumpStateOrd
::
DumpPageMemory
&&
signal
->
getLength
()
==
1
){
reportMemoryUsage
(
signal
,
0
);
reportMemoryUsage
(
signal
,
0
);
return
;
return
;
}
}
...
...
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