Skip to content
Merged
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
1 change: 1 addition & 0 deletions examples/in_memory.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This example queries a couple of test parquet we have for integration tests, and
so pulling the first is necessary.

```shell
git intall checkout
git lfs checkout
```

Expand Down
8 changes: 2 additions & 6 deletions examples/in_memory_cluster.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,8 @@ async fn main() -> Result<(), Box<dyn Error>> {
)
.await?;

ctx.register_parquet(
"weather",
"testdata/weather.parquet",
ParquetReadOptions::default(),
)
.await?;
ctx.register_parquet("weather", "testdata/weather", ParquetReadOptions::default())
.await?;

let df = ctx.sql(&args.query).await?;
if args.explain {
Expand Down
1 change: 1 addition & 0 deletions examples/localhost.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This example queries a couple of test parquet we have for integration tests, and
so pulling the first is necessary.

```shell
git lfs install
git lfs checkout
```

Expand Down