Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

51bind_type_guessing.t: Update for 9.0.0 errorcodes #436

Merged
merged 1 commit into from
Jul 2, 2024

Conversation

dveeden
Copy link
Collaborator

@dveeden dveeden commented Jul 2, 2024

Closes #434

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

```
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
```
@dveeden dveeden merged commit 7e6f3cd into perl5-dbi:master Jul 2, 2024
6 of 7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

DBD::mysql doesn't build with MySQL 9.0.0
1 participant