Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
9811802a
Commit
9811802a
authored
Aug 11, 2018
by
Alexander Barkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-16939 Move TIMESTAMP truncation code to Field_timestamp::store_TIME_with_warn
parent
2085f14a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
38 deletions
+52
-38
sql/field.cc
sql/field.cc
+42
-34
sql/field.h
sql/field.h
+10
-4
No files found.
sql/field.cc
View file @
9811802a
...
...
@@ -5024,41 +5024,53 @@ int Field_timestamp::store_TIME_with_warning(THD *thd, const Datetime *dt,
const
ErrConv
*
str
,
int
was_cut
)
{
ASSERT_COLUMN_MARKED_FOR_WRITE
;
uint
error
=
0
;
if
(
MYSQL_TIME_WARN_HAVE_WARNINGS
(
was_cut
)
||
!
dt
->
is_valid_datetime
())
static
const
timeval
zero
=
{
0
,
(
uint
)
0
};
// Handle totally bad values
if
(
!
dt
->
is_valid_datetime
())
{
error
=
1
;
s
et_datetime_warning
(
WARN_DATA_TRUNCATED
,
str
,
MYSQL_TIMESTAMP_DATETIME
,
1
)
;
set_datetime_warning
(
WARN_DATA_TRUNCATED
,
str
,
MYSQL_TIMESTAMP_DATETIME
,
1
)
;
s
tore_TIMEVAL
(
zero
);
return
1
;
}
else
if
(
MYSQL_TIME_WARN_HAVE_NOTES
(
was_cut
))
// Handle values that do not need DATETIME to TIMESTAMP conversion
if
(
!
dt
->
get_mysql_time
()
->
month
)
{
error
=
3
;
set_datetime_warning
(
Sql_condition
::
WARN_LEVEL_NOTE
,
WARN_DATA_TRUNCATED
,
str
,
MYSQL_TIMESTAMP_DATETIME
,
1
);
/*
Zero date is allowed by the current sql_mode. Store zero timestamp.
Return success or a warning about non-fatal truncation, e.g.:
INSERT INTO t1 (ts) VALUES ('0000-00-00 00:00:00 some tail');
*/
store_TIMEVAL
(
zero
);
return
store_TIME_return_code_with_warnings
(
was_cut
,
str
,
MYSQL_TIMESTAMP_DATETIME
);
}
/* Only convert a correct date (not a zero date) */
if
(
dt
->
is_valid_datetime
()
&&
dt
->
get_mysql_time
()
->
month
)
{
// Convert DATETIME to TIMESTAMP
uint
conversion_error
;
const
MYSQL_TIME
*
l_time
=
dt
->
get_mysql_time
();
my_time_t
timestamp
=
TIME_to_timestamp
(
thd
,
l_time
,
&
conversion_error
);
if
(
timestamp
==
0
&&
l_time
->
second_part
==
0
)
conversion_error
=
ER_WARN_DATA_OUT_OF_RANGE
;
if
(
unlikely
(
conversion_error
))
{
set_datetime_warning
(
conversion_error
,
str
,
MYSQL_TIMESTAMP_DATETIME
,
!
error
);
error
=
1
;
set_datetime_warning
(
ER_WARN_DATA_OUT_OF_RANGE
,
str
,
MYSQL_TIMESTAMP_DATETIME
,
1
);
store_TIMEVAL
(
zero
);
return
1
;
// date was fine but pointed to a DST gap
}
store_TIME
(
timestamp
,
l_time
->
second_part
);
}
else
// Adjust and store the value
timeval
tv
=
{
timestamp
,
(
uint
)
l_time
->
second_part
};
my_timeval_trunc
(
&
tv
,
decimals
());
store_TIMEVAL
(
tv
);
// Calculate return value and send warnings if needed
if
(
unlikely
(
conversion_error
))
// e.g. DATETIME in the DST gap
{
store_TIME
(
0
,
0
);
set_datetime_warning
(
conversion_error
,
str
,
MYSQL_TIMESTAMP_DATETIME
,
1
);
return
1
;
}
return
error
;
return
store_TIME_return_code_with_warnings
(
was_cut
,
str
,
MYSQL_TIMESTAMP_DATETIME
);
}
...
...
@@ -5367,10 +5379,10 @@ static longlong read_lowendian(const uchar *from, uint bytes)
}
}
void
Field_timestamp_hires
::
store_TIME
(
my_time_t
timestamp
,
ulong
sec_part
)
void
Field_timestamp_hires
::
store_TIME
VAL
(
const
timeval
&
tv
)
{
mi_int4store
(
ptr
,
t
imestamp
);
store_bigendian
(
sec_part_shift
(
sec_part
,
dec
),
ptr
+
4
,
sec_part_bytes
(
dec
));
mi_int4store
(
ptr
,
t
v
.
tv_sec
);
store_bigendian
(
sec_part_shift
(
tv
.
tv_usec
,
dec
),
ptr
+
4
,
sec_part_bytes
(
dec
));
}
my_time_t
Field_timestamp_hires
::
get_timestamp
(
const
uchar
*
pos
,
...
...
@@ -5449,12 +5461,8 @@ void Field_timestamp_with_dec::make_send_field(Send_field *field)
** MySQL-5.6 compatible TIMESTAMP(N)
**************************************************************/
void
Field_timestampf
::
store_TIME
(
my_time_t
timestamp
,
ulong
sec_part
)
void
Field_timestampf
::
store_TIME
VAL
(
const
timeval
&
tm
)
{
struct
timeval
tm
;
tm
.
tv_sec
=
timestamp
;
tm
.
tv_usec
=
sec_part
;
my_timeval_trunc
(
&
tm
,
dec
);
my_timestamp_to_binary
(
&
tm
,
ptr
,
dec
);
}
...
...
sql/field.h
View file @
9811802a
...
...
@@ -2711,6 +2711,10 @@ class Field_timestamp :public Field_temporal {
sql_mode_t
sql_mode_for_timestamp
(
THD
*
thd
)
const
;
int
store_TIME_with_warning
(
THD
*
,
const
Datetime
*
,
const
ErrConv
*
,
int
warn
);
virtual
void
store_TIMEVAL
(
const
timeval
&
tv
)
{
int4store
(
ptr
,
tv
.
tv_sec
);
}
public:
Field_timestamp
(
uchar
*
ptr_arg
,
uint32
len_arg
,
uchar
*
null_ptr_arg
,
uchar
null_bit_arg
,
...
...
@@ -2750,9 +2754,11 @@ class Field_timestamp :public Field_temporal {
{
return
get_timestamp
(
ptr
,
sec_part
);
}
v
irtual
v
oid
store_TIME
(
my_time_t
timestamp
,
ulong
sec_part
)
void
store_TIME
(
my_time_t
timestamp
,
ulong
sec_part
)
{
int4store
(
ptr
,
timestamp
);
timeval
tv
=
{
timestamp
,
(
uint
)
sec_part
};
my_timeval_trunc
(
&
tv
,
decimals
());
store_TIMEVAL
(
tv
);
}
bool
get_date
(
MYSQL_TIME
*
ltime
,
ulonglong
fuzzydate
);
uchar
*
pack
(
uchar
*
to
,
const
uchar
*
from
,
...
...
@@ -2822,6 +2828,7 @@ class Field_timestamp_hires :public Field_timestamp_with_dec {
{
return
Type_handler_timestamp
::
sec_part_bytes
(
dec
);
}
void
store_TIMEVAL
(
const
timeval
&
tv
);
public:
Field_timestamp_hires
(
uchar
*
ptr_arg
,
uchar
*
null_ptr_arg
,
uchar
null_bit_arg
,
...
...
@@ -2834,7 +2841,6 @@ class Field_timestamp_hires :public Field_timestamp_with_dec {
DBUG_ASSERT
(
dec
);
}
my_time_t
get_timestamp
(
const
uchar
*
pos
,
ulong
*
sec_part
)
const
;
void
store_TIME
(
my_time_t
timestamp
,
ulong
sec_part
);
int
cmp
(
const
uchar
*
,
const
uchar
*
);
uint32
pack_length
()
const
{
return
4
+
sec_part_bytes
(
dec
);
}
uint
size_of
()
const
{
return
sizeof
(
*
this
);
}
...
...
@@ -2850,6 +2856,7 @@ class Field_timestampf :public Field_timestamp_with_dec {
*
metadata_ptr
=
(
uchar
)
decimals
();
return
1
;
}
void
store_TIMEVAL
(
const
timeval
&
tv
);
public:
Field_timestampf
(
uchar
*
ptr_arg
,
uchar
*
null_ptr_arg
,
uchar
null_bit_arg
,
...
...
@@ -2878,7 +2885,6 @@ class Field_timestampf :public Field_timestamp_with_dec {
}
void
set_max
();
bool
is_max
();
void
store_TIME
(
my_time_t
timestamp
,
ulong
sec_part
);
my_time_t
get_timestamp
(
const
uchar
*
pos
,
ulong
*
sec_part
)
const
;
my_time_t
get_timestamp
(
ulong
*
sec_part
)
const
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment