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
a6be1375
Commit
a6be1375
authored
Dec 10, 2008
by
Luis Soares
Browse files
Options
Browse Files
Download
Plain Diff
push to 5.0-bugteam tree.
parents
59c9168c
da1bf248
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
141 additions
and
79 deletions
+141
-79
mysql-test/r/binlog_index.result
mysql-test/r/binlog_index.result
+1
-0
sql/log.cc
sql/log.cc
+133
-79
sql/sql_class.h
sql/sql_class.h
+7
-0
No files found.
mysql-test/r/binlog_index.result
View file @
a6be1375
...
@@ -21,6 +21,7 @@ flush logs;
...
@@ -21,6 +21,7 @@ flush logs;
*** must be a warning master-bin.000001 was not found ***
*** must be a warning master-bin.000001 was not found ***
Warnings:
Warnings:
Warning 1477 Being purged log MYSQLTEST_VARDIR/log/master-bin.000001 was not found
Warning 1477 Being purged log MYSQLTEST_VARDIR/log/master-bin.000001 was not found
Warning 1477 Being purged log MYSQLTEST_VARDIR/log/master-bin.000001 was not found
*** must show one record, of the active binlog, left in the index file after PURGE ***
*** must show one record, of the active binlog, left in the index file after PURGE ***
show binary logs;
show binary logs;
Log_name File_size
Log_name File_size
...
...
sql/log.cc
View file @
a6be1375
This diff is collapsed.
Click to expand it.
sql/sql_class.h
View file @
a6be1375
...
@@ -205,6 +205,13 @@ class MYSQL_LOG: public TC_LOG
...
@@ -205,6 +205,13 @@ class MYSQL_LOG: public TC_LOG
time_t
last_time
,
query_start
;
time_t
last_time
,
query_start
;
IO_CACHE
log_file
;
IO_CACHE
log_file
;
IO_CACHE
index_file
;
IO_CACHE
index_file
;
/*
purge_temp is a temp file used in purge_logs so that the index file
can be updated before deleting files from disk, yielding better crash
recovery. It is created on demand the first time purge_logs is called
and then reused for subsequent calls. It is cleaned up in cleanup().
*/
IO_CACHE
purge_temp
;
char
*
name
;
char
*
name
;
char
time_buff
[
20
],
db
[
NAME_LEN
+
1
];
char
time_buff
[
20
],
db
[
NAME_LEN
+
1
];
char
log_file_name
[
FN_REFLEN
],
index_file_name
[
FN_REFLEN
];
char
log_file_name
[
FN_REFLEN
],
index_file_name
[
FN_REFLEN
];
...
...
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