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
8803c688
Commit
8803c688
authored
Aug 23, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enabled make of ndb_redo_log_reader
parent
b977af8a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
ndb/src/kernel/blocks/dblqh/Makefile.am
ndb/src/kernel/blocks/dblqh/Makefile.am
+6
-2
ndb/src/kernel/blocks/dblqh/redoLogReader/redoLogFileReader.cpp
...c/kernel/blocks/dblqh/redoLogReader/redoLogFileReader.cpp
+2
-2
No files found.
ndb/src/kernel/blocks/dblqh/Makefile.am
View file @
8803c688
#SUBDIRS = redoLogReader
noinst_LIBRARIES
=
libdblqh.a
EXTRA_PROGRAMS
=
ndbd_redo_log_reader
libdblqh_a_SOURCES
=
DblqhInit.cpp DblqhMain.cpp
ndbd_redo_log_reader_SOURCES
=
redoLogReader/records.cpp redoLogReader/redoLogFileReader.cpp
include
$(top_srcdir)/ndb/config/common.mk.am
include
$(top_srcdir)/ndb/config/type_kernel.mk.am
LDADD
+=
\
$(top_builddir)
/ndb/src/common/util/libgeneral.la
\
$(top_builddir)
/ndb/src/common/portlib/libportlib.la
# Don't update the files from bitkeeper
%
::
SCCS/s.%
...
...
ndb/src/kernel/blocks/dblqh/redoLogReader/redoLogFileReader.cpp
View file @
8803c688
...
...
@@ -40,7 +40,7 @@ Uint32 readFromFile(FILE * f, Uint32 *toPtr, Uint32 sizeInWords);
void
readArguments
(
int
argc
,
const
char
**
argv
);
void
doExit
();
FILE
*
f
;
FILE
*
f
=
0
;
char
fileName
[
256
];
bool
thePrintFlag
=
true
;
bool
theCheckFlag
=
true
;
...
...
@@ -458,7 +458,7 @@ void readArguments(int argc, const char** argv)
void
doExit
()
{
ndbout
<<
"Error in redoLogReader(). Exiting!"
<<
endl
;
fclose
(
f
);
if
(
f
)
fclose
(
f
);
delete
[]
redoLogPage
;
exit
(
RETURN_ERROR
);
}
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