Skip to content

Commit 2b6e378

Browse files
authored
Support for MySQL 8.2 (#159)
Motivation: MySQL 8.2 has been released Modification: Added integration tests for MySQL 8.2 Result: Ensures compatibility with MySQL 8.2
1 parent 657a0a0 commit 2b6e378

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-20.04
1010
strategy:
1111
matrix:
12-
mysql-version: [ 5.5, 5.6, 5.7, 8.0, 8.1 ]
12+
mysql-version: [ 5.5, 5.6, 5.7, 8.0, 8.1, 8.2 ]
1313
name: Integration test with MySQL ${{ matrix.mysql-version }}
1414
steps:
1515
- uses: actions/checkout@v3

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ This project is currently being maintained by [@jchrys](https://github.com/jchry
4242
![MySQL 5.7 status](https://img.shields.io/badge/MySQL%205.7-pass-blue)
4343
![MySQL 8.0 status](https://img.shields.io/badge/MySQL%208.0-pass-blue)
4444
![MySQL 8.1 status](https://img.shields.io/badge/MySQL%208.1-pass-blue)
45+
![MySQL 8.2 status](https://img.shields.io/badge/MySQL%208.2-pass-blue)
46+
4547

4648

4749
In fact, it supports lower versions, in the theory, such as 4.1, 4.0, etc.

0 commit comments

Comments
 (0)