Dossy Shiobara

Results 106 comments of Dossy Shiobara

So, the error is being logged by the [go-sql-driver/mysql driver](https://github.com/go-sql-driver/mysql/blob/c48c0e7da17e8fc06133e431ce7c10e7a3e94f06/packets.go#L37), not by `dbmate` itself. I suspect the issue is caused by how [k8s implements cluster networking](https://kubernetes.io/docs/tutorials/services/connect-applications-service/), specifically in the case...

How about ignoring the PHP version requirement entirely, and checking the result of `crypt` in `password_hash` and triggering an error if the return value indicates incompatibility?

Bonus points: make the triggered error message clear that it is due to an incompatible implementation of `crypt`.

IOW, duck-typing FTW.

I still don't understand why you can't remove the version requirement and instead, just do: ``` $ret = crypt($password, $hash); if (!is_string($ret) || strlen($ret)

I just discovered this project and want to also say: thank you for making this available. I also need to display percentages in my diagrams, so I implemented the version...

@DevopsMercenary Can you include the migration SQL file that you're using in your test that is creating objects in the `dbmate` schema incorrectly? There are [postgres driver tests](https://github.com/amacneil/dbmate/blob/main/pkg/driver/postgres/postgres_test.go) that cover...

@DevopsMercenary Take a look at [the comment I just added](https://github.com/amacneil/dbmate/issues/440#issuecomment-1813373041) to #440. I suspect it's related to what you're seeing, as well. I'll work on coming up with a reproducible...

dbmate's pg driver doesn't use the environment variables as default connection parameter values the way the `libpq` C client library does, but I think that would be a useful enhancement,...

I would be in favor of supporting this "experimental" HTTP transport, based on the ClickHouse README [change on Jul 8, 2022](https://github.com/ClickHouse/clickhouse-go/blob/043b750a7abe52c1386bb4a6de5cef3618a02c61/README.md?plain=1#L103-L111) and [still marked experimental today](https://github.com/ClickHouse/clickhouse-go/blob/364719b68f57de0f52ea0c99fe3a5e58217bf5d6/README.md?plain=1#L180-L188), as long as the...