MySQL 8.4.0
Source Code Documentation
mle_time_bits.h
Go to the documentation of this file.
1/* Copyright (c) 2023, 2024, Oracle and/or its affiliates.
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, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef COMPONENTS_SERVICES_BITS_MLE_TIME_BITS_H
25#define COMPONENTS_SERVICES_BITS_MLE_TIME_BITS_H
26
27#define MYSQL_TIMESTAMP_TYPE_NONE -2
28#define MYSQL_TIMESTAMP_TYPE_ERROR -1
29#define MYSQL_TIMESTAMP_TYPE_DATE 0
30#define MYSQL_TIMESTAMP_TYPE_DATETIME 1
31#define MYSQL_TIMESTAMP_TYPE_TIME 2
32#define MYSQL_TIMESTAMP_TYPE_DATETIME_TZ 3
33
34/*
35 This struct should be convertible to/from MYSQL_TIME
36*/
37typedef struct mle_time {
38 unsigned int year, month, day, hour, minute, second;
39 unsigned long second_part; /**< microseconds */
40 bool neg;
42 /// The time zone displacement, specified in seconds.
45
46#endif /* COMPONENTS_SERVICES_BITS_MLE_TIME_BITS_H */
struct mle_time mle_time
Definition: mle_time_bits.h:37
unsigned int month
Definition: mle_time_bits.h:38
unsigned int year
Definition: mle_time_bits.h:38
unsigned int minute
Definition: mle_time_bits.h:38
int time_zone_displacement
The time zone displacement, specified in seconds.
Definition: mle_time_bits.h:43
unsigned long second_part
microseconds
Definition: mle_time_bits.h:39
unsigned int hour
Definition: mle_time_bits.h:38
bool neg
Definition: mle_time_bits.h:40
unsigned int day
Definition: mle_time_bits.h:38
unsigned int second
Definition: mle_time_bits.h:38
int time_type
Definition: mle_time_bits.h:41