-
Notifications
You must be signed in to change notification settings - Fork 235
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
It can't parse cockroachdb DSN #698
Comments
The CockroachDB documentation connection-parameters says that the URL scheme used is If the The Cockroach CLI has the
|
The DSN I'm using was generated by the CockroachDB cloud panel, I'm using postgres schema to run the code, it works fine, but i do think upper should implement this directly into their parse logic. |
I'm trying to connect to a database with this DSN:
cockroachdb://test:test@host:26257/test?sslmode=verify-full
. (I changed the password and host for this example)This is the code:
And I'm getting the error bellow:
But if I use
postgres
schema in the DSN (postgres://test:test@host:26257/test?sslmode=verify-full
), it works fine.The text was updated successfully, but these errors were encountered: