We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baba4f1 commit c7ccfa0Copy full SHA for c7ccfa0
2 files changed
src/args.rs
@@ -95,7 +95,7 @@ pub struct DftArgs {
95
#[clap(short = 'n', help = "Set the number of benchmark iterations to run")]
96
pub benchmark_iterations: Option<usize>,
97
98
- #[clap(long, help = "Host address to connect to")]
+ #[clap(long, help = "Host address to query. Only used for FlightSQL")]
99
pub host: Option<String>,
100
101
#[clap(
src/config.rs
@@ -19,6 +19,7 @@
19
20
use std::path::PathBuf;
21
22
+#[cfg(any(feature = "flightsql", feature = "http"))]
23
use std::net::{IpAddr, Ipv4Addr, SocketAddr};
24
25
use datafusion_app::config::ExecutionConfig;
0 commit comments