Skip to content

Commit

Permalink
Move SessionConfig to datafusion_execution (#5581)
Browse files Browse the repository at this point in the history
* Move SessionConfig to datafusion_execution

* Update code, mark `config_options()` deprecated, add `options()`
  • Loading branch information
alamb authored Mar 20, 2023
1 parent 89f2102 commit 232176f
Show file tree
Hide file tree
Showing 7 changed files with 401 additions and 369 deletions.
5 changes: 1 addition & 4 deletions datafusion/core/src/catalog/information_schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -644,10 +644,7 @@ impl PartitionStream for InformationSchemaDfSettings {
// TODO: Stream this
futures::stream::once(async move {
// create a mem table with the names of tables
config.make_df_settings(
ctx.session_config().config_options(),
&mut builder,
);
config.make_df_settings(ctx.session_config().options(), &mut builder);
Ok(builder.finish())
}),
))
Expand Down
Loading

0 comments on commit 232176f

Please sign in to comment.