Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions datafusion-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ arrow = { workspace = true }
async-trait = { workspace = true }
aws-config = "1.8.14"
aws-credential-types = "1.2.13"
bytes = { workspace = true }
chrono = { workspace = true }
clap = { version = "4.5.60", features = ["cargo", "derive"] }
datafusion = { workspace = true, features = [
Expand Down Expand Up @@ -77,4 +78,5 @@ ctor = { workspace = true }
insta = { workspace = true }
insta-cmd = "0.6.0"
rstest = { workspace = true }
tempfile = { workspace = true }
testcontainers-modules = { workspace = true, features = ["minio"] }
2 changes: 2 additions & 0 deletions datafusion-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ use datafusion_cli::catalog::DynamicObjectStoreCatalog;
use datafusion_cli::functions::{
ListFilesCacheFunc, MetadataCacheFunc, ParquetMetadataFunc, StatisticsCacheFunc,
};
use datafusion_cli::object_storage::init_object_store_io_runtime;
use datafusion_cli::object_storage::instrumented::{
InstrumentedObjectStoreMode, InstrumentedObjectStoreRegistry,
};
Expand Down Expand Up @@ -172,6 +173,7 @@ pub async fn main() -> ExitCode {
/// Main CLI entrypoint
async fn main_inner() -> Result<()> {
env_logger::init();
init_object_store_io_runtime();
let args = Args::parse();

if !args.quiet {
Expand Down
Loading
Loading