Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
51bind_type_guessing.t: Update for 9.0.0 errorcodes
``` mysql-8.4.0> create table t1(id int primary key, dd double); Query OK, 0 rows affected (0.02 sec) mysql-8.4.0> insert into t1 values(1,'5e'); ERROR 1265 (01000): Data truncated for column 'dd' at row 1 ``` ``` mysql-9.0.0> create table t1(id int primary key, dd double); Query OK, 0 rows affected (0.03 sec) mysql-9.0.0> insert into t1 values(1,'5e'); ERROR 1366 (HY000): Incorrect DOUBLE value: '5e' for column 'dd' at row 1 ```
- Loading branch information