Skip to content

Commit 9b91ec0

Browse files
committed
build
1 parent 1fa07ef commit 9b91ec0

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
run: |
3131
cp tests/Test/mysql.cnf ~/.my.cnf
3232
sudo systemctl start mysql.service
33+
mysql -V
3334
mysql -e "SET PERSIST binlog_row_metadata = 'FULL';" -uroot -proot
3435
mysql -uroot -proot < tests/Test/dump.sql
3536
- name: Test

tests/Test/dump.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ CREATE TABLE longblob_table (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, value L
3939
CREATE TABLE enum_table (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, value ENUM('SMALL', 'MEDIUM', 'LARGE'));
4040
CREATE TABLE set_table (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, value SET('RED', 'BLUE', 'GREEN'));
4141

42+
/*
4243
-- JSON data type (MySQL 5.7.8 and later)
4344
CREATE TABLE json_table (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, value JSON);
4445
@@ -51,3 +52,4 @@ CREATE TABLE multipoint_table (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, value
5152
CREATE TABLE multilinestring_table (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, value MULTILINESTRING);
5253
CREATE TABLE multipolygon_table (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, value MULTIPOLYGON);
5354
CREATE TABLE geometrycollection_table (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, value GEOMETRYCOLLECTION);
55+
*/

0 commit comments

Comments
 (0)