From 332276248a3a3a47ee5dd8aa7bc470e4e015951d Mon Sep 17 00:00:00 2001 From: Gabriel Musat Mestre Date: Fri, 10 Oct 2025 09:01:00 +0200 Subject: [PATCH] Fix in-memory example --- examples/in_memory.md | 1 + examples/in_memory_cluster.rs | 8 ++------ examples/localhost.md | 1 + 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/examples/in_memory.md b/examples/in_memory.md index bcd8907..c12818a 100644 --- a/examples/in_memory.md +++ b/examples/in_memory.md @@ -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 ``` diff --git a/examples/in_memory_cluster.rs b/examples/in_memory_cluster.rs index efba043..9778761 100644 --- a/examples/in_memory_cluster.rs +++ b/examples/in_memory_cluster.rs @@ -49,12 +49,8 @@ async fn main() -> Result<(), Box> { ) .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 { diff --git a/examples/localhost.md b/examples/localhost.md index 64e35f4..6371926 100644 --- a/examples/localhost.md +++ b/examples/localhost.md @@ -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 ```