You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
YZWL/IDEA/mysql/time_zone_leap_second.sql

11 lines
362 B

create table mysql.time_zone_leap_second
(
Transition_time bigint not null
primary key,
Correction int not null
)
comment 'Leap seconds information for time zones' charset = utf8mb3
row_format = DYNAMIC
stats_persistent = 0;