[1] | 1 | /* Copyright (C) 2004 MySQL AB & MySQL Finland AB & TCX DataKonsult AB |
---|
| 2 | |
---|
| 3 | This program is free software; you can redistribute it and/or modify |
---|
| 4 | it under the terms of the GNU General Public License as published by |
---|
| 5 | the Free Software Foundation; either version 2 of the License, or |
---|
| 6 | (at your option) any later version. |
---|
| 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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_ */ |
---|