-
Notifications
You must be signed in to change notification settings - Fork 39
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
What kind of client authentication when connecting to a local instance? #2040
Comments
I'm also having trouble using npgsql! It does not work with dbeaver too. But it works with psql. |
Thanks for opening this issue @Seddryck and thanks for adding, @64J0! We don't recommend the local server use-case for anything aside from testing, really, and we haven't tested it much with other tools. @64J0, are your issues with npgsql and dbeaver for the local server, or for GlareDB Cloud? What errors are you getting? |
For the local server. It's related to the protocol these tools use. I did open an issue at the npgsql repo as well -> npgsql/npgsql#5809. |
Thanks for the update, @64J0! We're currently working on the connection to dbeaver. The error I'm hitting: SQL Error [XX000]: ERROR: Error during planning: Invalid function 'format_type'.
Did you mean 'flatten'? has to do with a Postgres function which hasn't yet been implemented in GlareDB, and so we're working on implementing that now. This is connecting to GlareDB Cloud, rather than the local postgres server. Could you please share the error you're getting as well as how you're specifying your config? I'd also love to know more about how you're using the local server - it's not something we really document, and it would be great to understand what need it's meeting. |
Regarding the use case for the local server instance, I'm trying to use it for some integration tests in our CI/CD pipelines. We don't want these pipelines to rely on remote (especially web) resources. |
Thanks for the follow up, @Seddryck! Has this been blocking your usage of GlareDB? |
I wanted to follow up with our progress here. We have a PR open to implement the function which unblocks the first bug we were hitting (the unimplemented However, we're in the process of building a new execution engine, which we're planning on merging into this repo in the next month or two. Once we have that, we should be able to bypass this issue entirely. Thanks for your patience, and please let me know if there's anything else we can do to help! |
I'm a bit struggling to connect to a local instance of GlareDB. I'm successful with
psql
but not with theNpgsql
data provider in .NET. Could you confirm if the client authentication isTrust Authentication
?The text was updated successfully, but these errors were encountered: