We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fde87d8 commit c25f3faCopy full SHA for c25f3fa
src/lib.rs
@@ -512,7 +512,7 @@ impl InnerConnection {
512
options.push(("client_encoding".to_owned(), "UTF8".to_owned()));
513
// Postgres uses the value of TimeZone as the time zone for TIMESTAMP
514
// WITH TIME ZONE values. Timespec converts to GMT internally.
515
- options.push(("TimeZone".to_owned(), "GMT".to_owned()));
+ options.push(("timezone".to_owned(), "GMT".to_owned()));
516
// We have to clone here since we need the user again for auth
517
options.push(("user".to_owned(), user.user.clone()));
518
if let Some(database) = database {
0 commit comments