mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
rename of net_pkg.cc to protocol.cc
Class for sending data from server to client (Protocol) This handles both the old ( <= 4.0 ) protocol and then new binary protocol that is used for prepared statements.
This commit is contained in:
@ -113,7 +113,8 @@ enum timestamp_type { TIMESTAMP_NONE, TIMESTAMP_DATE, TIMESTAMP_FULL,
|
||||
TIMESTAMP_TIME };
|
||||
|
||||
typedef struct st_time {
|
||||
uint year,month,day,hour,minute,second,second_part;
|
||||
uint year,month,day,hour,minute,second;
|
||||
ulong second_part;
|
||||
bool neg;
|
||||
timestamp_type time_type;
|
||||
} TIME;
|
||||
|
Reference in New Issue
Block a user