-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
117 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
// Type for MYSQL_TYPE_DATE, MYSQL_TYPE_DATETIME and MYSQL_TYPE_TIMESTAMP, i.e. When was it? | ||
// https://dev.mysql.com/doc/dev/mysql-server/latest/page_protocol_binary_resultset.html#sect_protocol_binary_resultset_row_value_date | ||
pub const DateTime = struct { | ||
year: u16, | ||
month: u8, | ||
day: u8, | ||
hour: u8, | ||
minute: u8, | ||
second: u8, | ||
microsecond: u32, | ||
year: u16 = 0, | ||
month: u8 = 0, | ||
day: u8 = 0, | ||
hour: u8 = 0, | ||
minute: u8 = 0, | ||
second: u8 = 0, | ||
microsecond: u32 = 0, | ||
}; | ||
|
||
// Type for MYSQL_TYPE_TIME, i.e. How long did it take? | ||
// `Time` is ambigious and confusing, `Duration` was chosen as the name instead | ||
// https://dev.mysql.com/doc/dev/mysql-server/latest/page_protocol_binary_resultset.html#sect_protocol_binary_resultset_row_value_time | ||
pub const Duration = struct { | ||
days: u32, | ||
hour: u8, | ||
minute: u8, | ||
second: u8, | ||
microsecond: u32, | ||
days: u32 = 0, | ||
hour: u8 = 0, | ||
minute: u8 = 0, | ||
second: u8 = 0, | ||
microsecond: u32 = 0, | ||
}; |