-
Notifications
You must be signed in to change notification settings - Fork 98
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
GitHub Actions で PostgreSQL がエラーになるのを修正 #1018
Conversation
PostgreSQL17 サーバーへ PostgreSQL17未満の psql で `\l` を実行すると以 下のエラーが発生する ``` psql --version psql (PostgreSQL) 16.4 psql -h 127.0.0.1 -p 15432 -U eccube_db_user eccube_db eccube_db=# \l ERROR: column d.daticulocale does not exist 行 8: d.daticulocale as "ICU Locale", ^ HINT: Perhaps you meant to reference the column "d.datlocale". ``` 副作用の少ない `SELECT 1` に変更する. また、 docker compose のヘルえスチェックが有効になるよう `condition: service_healthy` を追加する
個人アカウントで確認するかぎりは PostgreSQL17 でも問題なさそう |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1018 +/- ##
=======================================
Coverage 56.29% 56.29%
=======================================
Files 75 75
Lines 8917 8917
=======================================
Hits 5020 5020
Misses 3897 3897
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
なぜかこちらのレポジトリでは改善しない🤔 |
606bfdb
to
2ae3d2a
Compare
一旦、 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ローカルで PostgreSQL 16.4 で起動し、EC-CUBE フロント画面が表示されることを確認した。
see EC-CUBE#1018 (comment) PostgreSQL の下位互換性は優れているため、 `postgres:latest` を指定して もほぼ問題ない。 latest とすることで、メジャーバージョンアップで何か問題が発生した場合 に迅速に検知可能。
PostgreSQL17 がリリースされたタイミングで GitHub Actions にエラーが発生している
PostgreSQL17 サーバーへ PostgreSQL17未満の psql で
\l
を実行すると以 下のエラーが発生するwait-for-pgsql.sh で
\l
を使用していたため、副作用の少ないSELECT 1
に変更する.また、 docker compose のヘルスチェックが有効になるよう
condition: service_healthy
を追加する