Skip to content

Commit c25f3fa

Browse files
committed
Make capitalization consitent for options
1 parent fde87d8 commit c25f3fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ impl InnerConnection {
512512
options.push(("client_encoding".to_owned(), "UTF8".to_owned()));
513513
// Postgres uses the value of TimeZone as the time zone for TIMESTAMP
514514
// WITH TIME ZONE values. Timespec converts to GMT internally.
515-
options.push(("TimeZone".to_owned(), "GMT".to_owned()));
515+
options.push(("timezone".to_owned(), "GMT".to_owned()));
516516
// We have to clone here since we need the user again for auth
517517
options.push(("user".to_owned(), user.user.clone()));
518518
if let Some(database) = database {

0 commit comments

Comments
 (0)