Mariadb creates the TEST table at startup

This commit is contained in:
Beshoy Girgis
2020-12-05 04:31:18 +00:00
parent 9dc0dc67a8
commit 72f019cad2
-1
View File
@@ -33,7 +33,6 @@ jobs:
- name: Create Database
run: |
mysql -h 127.0.0.1 -u root -e "SET GLOBAL innodb_file_per_table = 1;"
mysql -h 127.0.0.1 -u root -e "CREATE DATABASE TEST;"
mysql -h 127.0.0.1 -u root -e "GRANT ALL ON TEST.* TO 'TEST'@'localhost' IDENTIFIED BY 'TEST';"
if [[ -f /etc/mysql/my.cnf ]]; then sudo sed -i "s/\[mysqld\]/\[mysqld\]\ngroup_concat_max_len = 8192/" /etc/mysql/my.cnf; fi
- name: Execute tests (Unit and Feature tests) via PHPUnit