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

Feature/with alias #486

Merged
merged 4 commits into from
Jun 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3

steps:
- name: Show databases for root user
run: mysql --protocol=tcp -h localhost -P 13306 -u root -proot -e "ALTER DATABASE spiral CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;"

- name: Checkout
uses: actions/checkout@v2

Expand Down
11 changes: 6 additions & 5 deletions tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,21 @@ services:

cycle-mysql_latest:
image: mysql:8.0.37
restart: always
command: --default-authentication-plugin=mysql_native_password
restart: on-failure
command: |
--default-authentication-plugin=mysql_native_password
--character-set-server=utf8mb4
--collation-server=utf8mb4_unicode_ci
ports:
- "13306:3306"
environment:
MYSQL_DATABASE: "spiral"
MYSQL_ROOT_PASSWORD: "root"
MYSQL_ROOT_HOST: "%"
MYSQL_CHARSET: "utf8mb4"
MYSQL_COLLATION: "utf8mb4_unicode_ci"

cycle-postgres:
image: postgres:15.2
restart: always
restart: on-failure
ports:
- "15432:5432"
environment:
Expand Down
Loading