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
4163c91d
Commit
4163c91d
authored
Jul 10, 2006
by
pekka@orca.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb - debug stuff in LQH
parent
a3dcbff6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
+9
-2
No files found.
storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
View file @
4163c91d
...
@@ -498,6 +498,7 @@ void Dblqh::execSTTOR(Signal* signal)
...
@@ -498,6 +498,7 @@ void Dblqh::execSTTOR(Signal* signal)
csignalKey = signal->theData[6];
csignalKey = signal->theData[6];
#if defined VM_TRACE || defined ERROR_INSERT || defined NDBD_TRACENR
#if defined VM_TRACE || defined ERROR_INSERT || defined NDBD_TRACENR
char *name;
char *name;
FILE *out = 0;
#endif
#endif
switch (tstartPhase) {
switch (tstartPhase) {
case ZSTART_PHASE1:
case ZSTART_PHASE1:
...
@@ -509,8 +510,14 @@ void Dblqh::execSTTOR(Signal* signal)
...
@@ -509,8 +510,14 @@ void Dblqh::execSTTOR(Signal* signal)
sendsttorryLab(signal);
sendsttorryLab(signal);
#if defined VM_TRACE || defined ERROR_INSERT || defined NDBD_TRACENR
#if defined VM_TRACE || defined ERROR_INSERT || defined NDBD_TRACENR
name
=
NdbConfig_SignalLogFileName
(
getOwnNodeId
());
#ifdef VM_TRACE
tracenrout
=
new
NdbOut
(
*
new
FileOutputStream
(
fopen
(
name
,
"w+"
)));
out = globalSignalLoggers.getOutputStream();
#endif
if (out == 0) {
name = NdbConfig_SignalLogFileName(getOwnNodeId());
out = fopen(name, "a");
}
tracenrout = new NdbOut(* new FileOutputStream(out));
#endif
#endif
#ifdef ERROR_INSERT
#ifdef ERROR_INSERT
...
...
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