mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
MDEV-16935 Change the parameter of Field_xxx::store_TIME_with_dec() to const Datetime* and const Time*
This commit is contained in:
34
sql/field.h
34
sql/field.h
@ -2595,6 +2595,20 @@ class Field_temporal: public Field {
|
||||
protected:
|
||||
Item *get_equal_const_item_datetime(THD *thd, const Context &ctx,
|
||||
Item *const_item);
|
||||
int store_TIME_return_code_with_warnings(int warn, const ErrConv *str,
|
||||
timestamp_type ts_type)
|
||||
{
|
||||
if (!MYSQL_TIME_WARN_HAVE_WARNINGS(warn) &&
|
||||
MYSQL_TIME_WARN_HAVE_NOTES(warn))
|
||||
{
|
||||
set_warnings(Sql_condition::WARN_LEVEL_NOTE, str,
|
||||
warn | MYSQL_TIME_WARN_TRUNCATED, ts_type);
|
||||
return 3;
|
||||
}
|
||||
set_warnings(Sql_condition::WARN_LEVEL_WARN, str, warn, ts_type);
|
||||
return warn ? 2 : 0;
|
||||
}
|
||||
|
||||
public:
|
||||
Field_temporal(uchar *ptr_arg,uint32 len_arg, uchar *null_ptr_arg,
|
||||
uchar null_bit_arg, utype unireg_check_arg,
|
||||
@ -2660,9 +2674,10 @@ public:
|
||||
*/
|
||||
class Field_temporal_with_date: public Field_temporal {
|
||||
protected:
|
||||
int store_TIME_with_warning(MYSQL_TIME *ltime, const ErrConv *str,
|
||||
int store_TIME_with_warning(const Datetime *ltime, const ErrConv *str,
|
||||
int was_cut);
|
||||
virtual void store_TIME(MYSQL_TIME *ltime) = 0;
|
||||
void store_TIME_with_trunc(const Time *);
|
||||
virtual void store_TIME(const MYSQL_TIME *ltime) = 0;
|
||||
virtual bool get_TIME(MYSQL_TIME *ltime, const uchar *pos,
|
||||
ulonglong fuzzydate) const = 0;
|
||||
bool validate_MMDD(bool not_zero_date, uint month, uint day,
|
||||
@ -2694,7 +2709,8 @@ public:
|
||||
class Field_timestamp :public Field_temporal {
|
||||
protected:
|
||||
sql_mode_t sql_mode_for_timestamp(THD *thd) const;
|
||||
int store_TIME_with_warning(THD *, MYSQL_TIME *, const ErrConv *, int warn);
|
||||
int store_TIME_with_warning(THD *, const Datetime *,
|
||||
const ErrConv *, int warn);
|
||||
public:
|
||||
Field_timestamp(uchar *ptr_arg, uint32 len_arg,
|
||||
uchar *null_ptr_arg, uchar null_bit_arg,
|
||||
@ -2948,7 +2964,7 @@ public:
|
||||
|
||||
class Field_date :public Field_date_common
|
||||
{
|
||||
void store_TIME(MYSQL_TIME *ltime);
|
||||
void store_TIME(const MYSQL_TIME *ltime);
|
||||
bool get_TIME(MYSQL_TIME *ltime, const uchar *pos, ulonglong fuzzydate) const;
|
||||
public:
|
||||
Field_date(uchar *ptr_arg, uchar *null_ptr_arg, uchar null_bit_arg,
|
||||
@ -2984,7 +3000,7 @@ public:
|
||||
|
||||
class Field_newdate :public Field_date_common
|
||||
{
|
||||
void store_TIME(MYSQL_TIME *ltime);
|
||||
void store_TIME(const MYSQL_TIME *ltime);
|
||||
bool get_TIME(MYSQL_TIME *ltime, const uchar *pos, ulonglong fuzzydate) const;
|
||||
public:
|
||||
Field_newdate(uchar *ptr_arg, uchar *null_ptr_arg, uchar null_bit_arg,
|
||||
@ -3019,7 +3035,7 @@ class Field_time :public Field_temporal {
|
||||
long curdays;
|
||||
protected:
|
||||
virtual void store_TIME(const MYSQL_TIME *ltime);
|
||||
int store_TIME_with_warning(MYSQL_TIME *ltime, const ErrConv *str, int warn);
|
||||
int store_TIME_with_warning(const Time *ltime, const ErrConv *str, int warn);
|
||||
void set_warnings(Sql_condition::enum_warning_level level,
|
||||
const ErrConv *str, int was_cut)
|
||||
{
|
||||
@ -3177,7 +3193,7 @@ public:
|
||||
|
||||
|
||||
class Field_datetime :public Field_temporal_with_date {
|
||||
void store_TIME(MYSQL_TIME *ltime);
|
||||
void store_TIME(const MYSQL_TIME *ltime);
|
||||
bool get_TIME(MYSQL_TIME *ltime, const uchar *pos, ulonglong fuzzydate) const;
|
||||
public:
|
||||
Field_datetime(uchar *ptr_arg, uint length_arg, uchar *null_ptr_arg,
|
||||
@ -3270,7 +3286,7 @@ public:
|
||||
DATETIME(1..6)
|
||||
*/
|
||||
class Field_datetime_hires :public Field_datetime_with_dec {
|
||||
void store_TIME(MYSQL_TIME *ltime);
|
||||
void store_TIME(const MYSQL_TIME *ltime);
|
||||
bool get_TIME(MYSQL_TIME *ltime, const uchar *pos, ulonglong fuzzydate) const;
|
||||
public:
|
||||
Field_datetime_hires(uchar *ptr_arg, uchar *null_ptr_arg,
|
||||
@ -3293,7 +3309,7 @@ public:
|
||||
DATETIME(0..6) - MySQL56 version
|
||||
*/
|
||||
class Field_datetimef :public Field_datetime_with_dec {
|
||||
void store_TIME(MYSQL_TIME *ltime);
|
||||
void store_TIME(const MYSQL_TIME *ltime);
|
||||
bool get_TIME(MYSQL_TIME *ltime, const uchar *pos, ulonglong fuzzydate) const;
|
||||
int save_field_metadata(uchar *metadata_ptr)
|
||||
{
|
||||
|
Reference in New Issue
Block a user