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