diff options
Diffstat (limited to 'sql/structs.h')
-rw-r--r-- | sql/structs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/structs.h b/sql/structs.h index d9607b220f7..ee231186e1a 100644 --- a/sql/structs.h +++ b/sql/structs.h @@ -150,7 +150,8 @@ typedef struct st_time { typedef struct { - long year,month,day,hour,minute,second,second_part; + ulong year,month,day,hour; + ulonglong minute,second,second_part; bool neg; } INTERVAL; |