mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge branch '5.5' into 10.1
This commit is contained in:
64
mysql-test/r/ps_innodb.result
Normal file
64
mysql-test/r/ps_innodb.result
Normal file
@ -0,0 +1,64 @@
|
||||
#
|
||||
# MDEV-17042: prepared statement does not return error with
|
||||
# SQL_MODE STRICT_TRANS_TABLES. (Part 2)
|
||||
#
|
||||
set @save_sql_mode=@@sql_mode;
|
||||
set sql_mode='STRICT_TRANS_TABLES';
|
||||
CREATE TABLE t1 (id int, count int) engine=innodb;
|
||||
insert into t1 values (1,1),(0,2);
|
||||
update t1 set count = count + 1 where id = '1bad';
|
||||
ERROR 22007: Truncated incorrect DOUBLE value: '1bad'
|
||||
prepare stmt from "update t1 set count = count + 1 where id = '1bad'";
|
||||
execute stmt;
|
||||
ERROR 22007: Truncated incorrect DOUBLE value: '1bad'
|
||||
deallocate prepare stmt;
|
||||
prepare stmt from 'update t1 set count = count + 1 where id = ?';
|
||||
set @a = '1bad';
|
||||
execute stmt using @a;
|
||||
ERROR 22007: Truncated incorrect DOUBLE value: '1bad'
|
||||
deallocate prepare stmt;
|
||||
drop table t1;
|
||||
CREATE TABLE t1 (id decimal(10,5), count int) engine=innodb;
|
||||
insert into t1 values (1,1),(0,2);
|
||||
update t1 set count = count + 1 where id = '1bad';
|
||||
ERROR 22007: Truncated incorrect DECIMAL value: '1bad'
|
||||
prepare stmt from "update t1 set count = count + 1 where id = '1bad'";
|
||||
execute stmt;
|
||||
ERROR 22007: Truncated incorrect DECIMAL value: '1bad'
|
||||
deallocate prepare stmt;
|
||||
prepare stmt from 'update t1 set count = count + 1 where id = ?';
|
||||
set @a = '1bad';
|
||||
execute stmt using @a;
|
||||
ERROR 22007: Truncated incorrect DECIMAL value: '1bad'
|
||||
deallocate prepare stmt;
|
||||
drop table t1;
|
||||
CREATE TABLE t1 (id double, count int) engine=innodb;
|
||||
insert into t1 values (1,1),(0,2);
|
||||
update t1 set count = count + 1 where id = '1bad';
|
||||
ERROR 22007: Truncated incorrect DOUBLE value: '1bad'
|
||||
prepare stmt from "update t1 set count = count + 1 where id = '1bad'";
|
||||
execute stmt;
|
||||
ERROR 22007: Truncated incorrect DOUBLE value: '1bad'
|
||||
deallocate prepare stmt;
|
||||
prepare stmt from 'update t1 set count = count + 1 where id = ?';
|
||||
set @a = '1bad';
|
||||
execute stmt using @a;
|
||||
ERROR 22007: Truncated incorrect DOUBLE value: '1bad'
|
||||
deallocate prepare stmt;
|
||||
drop table t1;
|
||||
CREATE TABLE t1 (id date, count int) engine=innodb;
|
||||
insert into t1 values ("2019-06-11",1),("2019-06-12",2);
|
||||
update t1 set count = count + 1 where id = '1bad';
|
||||
ERROR 22007: Incorrect datetime value: '1bad'
|
||||
prepare stmt from "update t1 set count = count + 1 where id = '1bad'";
|
||||
execute stmt;
|
||||
ERROR 22007: Incorrect datetime value: '1bad'
|
||||
deallocate prepare stmt;
|
||||
prepare stmt from 'update t1 set count = count + 1 where id = ?';
|
||||
set @a = '1bad';
|
||||
execute stmt using @a;
|
||||
ERROR 22007: Incorrect datetime value: '1bad'
|
||||
deallocate prepare stmt;
|
||||
drop table t1;
|
||||
set sql_mode=@save_sql_mode;
|
||||
# End of 5.5 tests
|
Reference in New Issue
Block a user