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
df53e89f
Commit
df53e89f
authored
Apr 13, 2007
by
mats@romeo.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing portability issues regarding use of time_t.
parent
75c1242d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
sql/rpl_rli.cc
sql/rpl_rli.cc
+1
-1
sql/rpl_rli.h
sql/rpl_rli.h
+2
-2
No files found.
sql/rpl_rli.cc
View file @
df53e89f
...
...
@@ -1088,7 +1088,7 @@ bool st_relay_log_info::cached_charset_compare(char *charset) const
void
st_relay_log_info
::
stmt_done
(
my_off_t
const
event_master_log_pos
,
time_t
event_creation_time
)
my_
time_t
event_creation_time
)
{
clear_flag
(
IN_STMT
);
...
...
sql/rpl_rli.h
View file @
df53e89f
...
...
@@ -184,7 +184,7 @@ typedef struct st_relay_log_info
ulonglong
future_group_master_log_pos
;
#endif
time_t
last_master_timestamp
;
my_time_t
last_master_timestamp
;
void
clear_slave_error
();
void
clear_until_condition
();
...
...
@@ -345,7 +345,7 @@ typedef struct st_relay_log_info
the <code>Seconds_behind_master</code> field.
*/
void
stmt_done
(
my_off_t
event_log_pos
,
time_t
event_creation_time
);
my_
time_t
event_creation_time
);
/**
...
...
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