1 | /* Copyright (c) 2004, 2006 MySQL AB |
2 | Use is subject to license terms |
3 | |
4 | This program is free software; you can redistribute it and/or modify |
5 | it under the terms of the GNU General Public License as published by |
6 | the Free Software Foundation; version 2 of the License. |
7 | |
8 | This program is distributed in the hope that it will be useful, |
9 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11 | GNU General Public License for more details. |
12 | |
13 | You should have received a copy of the GNU General Public License |
14 | along with this program; if not, write to the Free Software |
15 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ |
16 | |
17 | #ifndef _mysql_time_h_ |
18 | #define _mysql_time_h_ |
19 | |
20 | /* |
21 | Time declarations shared between the server and client API: |
22 | you should not add anything to this header unless it's used |
23 | (and hence should be visible) in mysql.h. |
24 | If you're looking for a place to add new time-related declaration, |
25 | it's most likely my_time.h. See also "C API Handling of Date |
26 | and Time Values" chapter in documentation. |
27 | */ |
28 | |
29 | enum enum_mysql_timestamp_type |
30 | { |
31 | MYSQL_TIMESTAMP_NONE= -2, MYSQL_TIMESTAMP_ERROR= -1, |
32 | MYSQL_TIMESTAMP_DATE= 0, MYSQL_TIMESTAMP_DATETIME= 1, MYSQL_TIMESTAMP_TIME= 2 |
33 | }; |
34 | |
35 | |
36 | /* |
37 | Structure which is used to represent datetime values inside MySQL. |
38 | |
39 | We assume that values in this structure are normalized, i.e. year <= 9999, |
40 | month <= 12, day <= 31, hour <= 23, hour <= 59, hour <= 59. Many functions |
41 | in server such as my_system_gmt_sec() or make_time() family of functions |
42 | rely on this (actually now usage of make_*() family relies on a bit weaker |
43 | restriction). Also functions that produce MYSQL_TIME as result ensure this. |
44 | There is one exception to this rule though if this structure holds time |
45 | value (time_type == MYSQL_TIMESTAMP_TIME) days and hour member can hold |
46 | bigger values. |
47 | */ |
48 | typedef struct st_mysql_time |
49 | { |
50 | unsigned int year, month, day, hour, minute, second; |
51 | unsigned long second_part; |
52 | my_bool neg; |
53 | enum enum_mysql_timestamp_type time_type; |
54 | } MYSQL_TIME; |
55 | |
56 | #endif /* _mysql_time_h_ */ |
57 | |