Details
-
Bug
-
Status: Stalled (View Workflow)
-
Major
-
Resolution: Unresolved
-
5.5(EOL), 10.0(EOL), 10.1(EOL), 10.2(EOL), 10.3(EOL), 10.4(EOL), 10.5
-
10.1.8-3
Description
This script:
SET sql_mode='STRICT_ALL_TABLES';
|
DROP TABLE IF EXISTS t1;
|
CREATE TABLE t1 (a DECIMAL);
|
INSERT INTO t1 VALUES(CAST('' AS DECIMAL));
|
returns an error:
ERROR 1292 (22007): Truncated incorrect DECIMAL value: ''
|
This looks wrong.
I wrote an explicit CAST, so I expect:
- CAST to return 0 with a warning
- INSERT to write 0 into the table normally, as I'm actually inserting the CAST result, which is 0.
Attachments
Issue Links
- blocks
-
MDEV-8109 unexpected CAST result
- Closed
- relates to
-
MDEV-19362 New STRICT flags for sql_mode
- Open
-
MDEV-8466 CAST works differently for DECIMAL/INT vs DOUBLE for empty strings
- Closed
-
MDEV-8468 CAST and INSERT work differently for DECIMAL/INT vs DOUBLE for a string with trailing spaces
- Closed