Skip to content

Commit 0ce58c3

Browse files
authored
fix: Incorrect weather parquet path in examples (#165)
* fix: Incorrect weather parquet path in examples * style format
1 parent 2df3467 commit 0ce58c3

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

examples/localhost_run.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,8 @@ async fn main() -> Result<(), Box<dyn Error>> {
5353
)
5454
.await?;
5555

56-
ctx.register_parquet(
57-
"weather",
58-
"testdata/weather.parquet",
59-
ParquetReadOptions::default(),
60-
)
61-
.await?;
56+
ctx.register_parquet("weather", "testdata/weather", ParquetReadOptions::default())
57+
.await?;
6258

6359
let df = ctx.sql(&args.query).await?;
6460
if args.explain {

0 commit comments

Comments
 (0)