mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-30342 Wrong "Truncated incorrect DECIMAL value" warning/error
regression from MDEV-29540 / 8c38939369
.
INSERT SELECT errors needed to be unconditionally ignored.
As this touches the CREATE .. SELECT functionality, show
the equalivent test there.
This commit is contained in:
@ -595,4 +595,21 @@ deallocate prepare stmt;
|
||||
|
||||
drop table t1,t2,t3;
|
||||
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-30342 Wrong "Truncated incorrect DECIMAL value" warning/error
|
||||
--echo #
|
||||
|
||||
create table t1(c1 varchar(1));
|
||||
create table t2(c1 varchar(1));
|
||||
|
||||
insert into t1(c1) values('#');
|
||||
|
||||
select @@sql_mode like '%strict_all_tables%';
|
||||
insert into t2(c1) select if(c1 = '#', c1 = 0, c1) as c1 from t1;
|
||||
|
||||
drop table t1, t2;
|
||||
|
||||
--echo #
|
||||
--echo # End of 10.3 test
|
||||
--echo #
|
||||
|
Reference in New Issue
Block a user