From f10d098f7dc4c2f2281b8ef49e945114996b91a1 Mon Sep 17 00:00:00 2001 From: "monty@mysql.com" <> Date: Wed, 28 Apr 2004 17:45:08 +0300 Subject: Fixed http address in some scripts (Bug #3460) Output TIMESTAMP in 4.1 format for 4.1 tables (or for TIMESTAMP(19)) (portability fix) Fixed that INTERVAL can handle big integers. (Bug #3498) Fixed that hostname="" works identical as hostname="%" for table/column grants (Bug #3473) --- sql/structs.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sql/structs.h') diff --git a/sql/structs.h b/sql/structs.h index 77fed422d21..156bf7745af 100644 --- a/sql/structs.h +++ b/sql/structs.h @@ -119,7 +119,8 @@ typedef struct st_time { } 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; -- cgit v1.2.1