time_zone_leap_second - xiaoboluo768/mysql-system-schema GitHub Wiki
- 该表提供查询跳秒机器修正值信息,该表中的信息与time_zone_transition表中的类似,但time_zone_transition表中还记录了时区ID等信息
- 表结构定义
CREATE TABLE `time_zone_leap_second` (
`Transition_time` bigint(20) NOT NULL,
`Correction` int(11) NOT NULL,
PRIMARY KEY (`Transition_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 STATS_PERSISTENT=0 COMMENT='Leap seconds information for time zones';
- 表字段含义
- Transition_time:跳秒的瞬变时间(表示UTC和GPS时间的差异 ?)
- Correction:跳秒的修正值
- 表记录内容示例
root@localhost : mysql 04:51:44> select * from time_zone_leap_second;
+-----------------+------------+
| Transition_time | Correction |
+-----------------+------------+
| 78796800 | 1 |
| 94694401 | 2 |
......
上一篇:time_zone表 |下一篇:time_zone_name表