We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
PgConnectOptions.options
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
sqlx/sqlx-core/src/postgres/options/mod.rs
Line 431 in 728717f
Test case:
let pg_connect_opts = PgConnectOptions::default() .database(db_name) .options([("default_transaction_isolation", "repeatable read")]);
Connecting with these options will given an error that "repeatable" is not a valid isolation level.
I think the solution is to URL encode options.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
sqlx/sqlx-core/src/postgres/options/mod.rs
Line 431 in 728717f
Test case:
Connecting with these options will given an error that "repeatable" is not a valid isolation level.
I think the solution is to URL encode options.
The text was updated successfully, but these errors were encountered: