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 8b95574 commit 829dbc0Copy full SHA for 829dbc0
datafusion-postgres/tests/common/mod.rs
@@ -14,7 +14,11 @@ pub fn setup_handlers() -> DfSessionService {
14
let session_context = SessionContext::new();
15
setup_pg_catalog(&session_context, "datafusion").expect("Failed to setup sesession context");
16
17
- DfSessionService::new(Arc::new(session_context), Arc::new(AuthManager::new()), Some(std::time::Duration::from_secs(30)))
+ DfSessionService::new(
18
+ Arc::new(session_context),
19
+ Arc::new(AuthManager::new()),
20
+ Some(std::time::Duration::from_secs(30)),
21
+ )
22
}
23
24
#[derive(Debug, Default)]
0 commit comments