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 4e7303e commit 3ec5029Copy full SHA for 3ec5029
1 file changed
README.md
@@ -68,7 +68,9 @@ use url::Url;
68
```rust
69
#[tokio::main]
70
async fn main() -> Result<(), Box<dyn std::error::Error>> {
71
- // 1. Spawn a Distributed DataFusion worker in a localhost port.
+ // 1. Spawn a Distributed DataFusion worker in a localhost port, and configure it
72
+ // so that queries to Parquet files hosted at https://datasets.clickhouse.com
73
+ // can be resolved.
74
let base = Url::parse("https://datasets.clickhouse.com")?;
75
let store = HttpBuilder::new().with_url(base.clone()).build()?;
76
let runtime = RuntimeEnvBuilder::new().build_arc()?;
0 commit comments