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 ```