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
7114fde7
Commit
7114fde7
authored
Dec 01, 2008
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Plain Diff
merged bug 39920 to 5.0-bugteam
parents
a1e9b6ba
f56e43ce
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
45 additions
and
0 deletions
+45
-0
mysql-test/r/timezone3.result
mysql-test/r/timezone3.result
+8
-0
mysql-test/std_data/Moscow_leap
mysql-test/std_data/Moscow_leap
+0
-0
mysql-test/t/timezone3.test
mysql-test/t/timezone3.test
+12
-0
sql/tztime.cc
sql/tztime.cc
+22
-0
sql/tztime.h
sql/tztime.h
+3
-0
No files found.
mysql-test/r/timezone3.result
View file @
7114fde7
...
...
@@ -17,6 +17,9 @@ insert into t1 values
insert into t1 values
(unix_timestamp('1981-07-01 03:59:59'),'1981-07-01 03:59:59'),
(unix_timestamp('1981-07-01 04:00:00'),'1981-07-01 04:00:00');
insert into t1 values
(unix_timestamp('2009-01-01 02:59:59'),'2009-01-01 02:59:59'),
(unix_timestamp('2009-01-01 03:00:00'),'2009-01-01 03:00:00');
select i, from_unixtime(i), c from t1;
i from_unixtime(i) c
1072904422 2004-01-01 00:00:00 2004-01-01 00:00:00
...
...
@@ -31,6 +34,8 @@ i from_unixtime(i) c
1099180821 2004-10-31 02:59:59 2004-10-31 02:59:59
362793608 1981-07-01 03:59:59 1981-07-01 03:59:59
362793610 1981-07-01 04:00:00 1981-07-01 04:00:00
1230768022 2009-01-01 02:59:59 2009-01-01 02:59:59
1230768024 2009-01-01 03:00:00 2009-01-01 03:00:00
drop table t1;
create table t1 (ts timestamp);
insert into t1 values (19730101235900), (20040101235900);
...
...
@@ -39,3 +44,6 @@ ts
1973-01-01 23:59:00
2004-01-01 23:59:00
drop table t1;
SELECT FROM_UNIXTIME(1230768022), FROM_UNIXTIME(1230768023), FROM_UNIXTIME(1230768024);
FROM_UNIXTIME(1230768022) FROM_UNIXTIME(1230768023) FROM_UNIXTIME(1230768024)
2009-01-01 02:59:59 2009-01-01 02:59:59 2009-01-01 03:00:00
mysql-test/std_data/Moscow_leap
View file @
7114fde7
No preview for this file type
mysql-test/t/timezone3.test
View file @
7114fde7
...
...
@@ -45,6 +45,10 @@ insert into t1 values
(
unix_timestamp
(
'1981-07-01 03:59:59'
),
'1981-07-01 03:59:59'
),
(
unix_timestamp
(
'1981-07-01 04:00:00'
),
'1981-07-01 04:00:00'
);
insert
into
t1
values
(
unix_timestamp
(
'2009-01-01 02:59:59'
),
'2009-01-01 02:59:59'
),
(
unix_timestamp
(
'2009-01-01 03:00:00'
),
'2009-01-01 03:00:00'
);
select
i
,
from_unixtime
(
i
),
c
from
t1
;
drop
table
t1
;
...
...
@@ -58,4 +62,12 @@ insert into t1 values (19730101235900), (20040101235900);
select
*
from
t1
;
drop
table
t1
;
#
# Test Bug #39920: MySQL cannot deal with Leap Second expression in string
# literal
#
# 2009-01-01 02:59:59, 2009-01-01 02:59:60 and 2009-01-01 03:00:00
SELECT
FROM_UNIXTIME
(
1230768022
),
FROM_UNIXTIME
(
1230768023
),
FROM_UNIXTIME
(
1230768024
);
# End of 4.1 tests
sql/tztime.cc
View file @
7114fde7
...
...
@@ -1073,6 +1073,7 @@ Time_zone_system::gmt_sec_to_TIME(MYSQL_TIME *tmp, my_time_t t) const
localtime_r
(
&
tmp_t
,
&
tmp_tm
);
localtime_to_TIME
(
tmp
,
&
tmp_tm
);
tmp
->
time_type
=
MYSQL_TIMESTAMP_DATETIME
;
adjust_leap_second
(
tmp
);
}
...
...
@@ -1157,6 +1158,7 @@ Time_zone_utc::gmt_sec_to_TIME(MYSQL_TIME *tmp, my_time_t t) const
gmtime_r
(
&
tmp_t
,
&
tmp_tm
);
localtime_to_TIME
(
tmp
,
&
tmp_tm
);
tmp
->
time_type
=
MYSQL_TIMESTAMP_DATETIME
;
adjust_leap_second
(
tmp
);
}
...
...
@@ -1260,6 +1262,7 @@ void
Time_zone_db
::
gmt_sec_to_TIME
(
MYSQL_TIME
*
tmp
,
my_time_t
t
)
const
{
::
gmt_sec_to_TIME
(
tmp
,
t
,
tz_info
);
adjust_leap_second
(
tmp
);
}
...
...
@@ -2373,6 +2376,25 @@ Time_zone *my_tz_find_with_opening_tz_tables(THD *thd, const String *name)
DBUG_RETURN
(
tz
);
}
/**
Convert leap seconds into non-leap
This function will convert the leap seconds added by the OS to
non-leap seconds, e.g. 23:59:59, 23:59:60 -> 23:59:59, 00:00:01 ...
This check is not checking for years on purpose : although it's not a
complete check this way it doesn't require looking (and having installed)
the leap seconds table.
@param[in,out] broken down time structure as filled in by the OS
*/
void
Time_zone
::
adjust_leap_second
(
MYSQL_TIME
*
t
)
{
if
(
t
->
second
==
60
||
t
->
second
==
61
)
t
->
second
=
59
;
}
#endif
/* !defined(TESTTIME) && !defined(TZINFO2SQL) */
...
...
sql/tztime.h
View file @
7114fde7
...
...
@@ -55,6 +55,9 @@ public:
allocated on MEM_ROOT and should not require destruction.
*/
virtual
~
Time_zone
()
{};
protected:
static
inline
void
adjust_leap_second
(
MYSQL_TIME
*
t
);
};
extern
Time_zone
*
my_tz_UTC
;
...
...
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