Skip to content

Commit b2e99fc

Browse files
Fix incorrect link for sql_query.rs example in README (#18807)
## What was wrong When clicking on the `sql_query.rs` example link in the README, it was taking users to `memtable.rs` instead of the correct file. ## What this fixes The link now correctly points to `examples/sql_query.rs` so people can find the right example code. ## Changes made - Fixed one line in `datafusion-examples/README.md` (line 96) - Changed the link from `examples/memtable.rs` to `examples/sql_query.rs`
1 parent 984d210 commit b2e99fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion-examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ cargo run --example dataframe
9393
- [`sql_analysis.rs`](examples/sql_analysis.rs): Analyse SQL queries with DataFusion structures
9494
- [`sql_frontend.rs`](examples/sql_frontend.rs): Create LogicalPlans (only) from sql strings
9595
- [`sql_dialect.rs`](examples/sql_dialect.rs): Example of implementing a custom SQL dialect on top of `DFParser`
96-
- [`sql_query.rs`](examples/memtable.rs): Query data using SQL (in memory `RecordBatches`, local Parquet files)
96+
- [`sql_query.rs`](examples/sql_query.rs): Query data using SQL (in memory `RecordBatches`, local Parquet files)
9797

9898
## Distributed
9999

0 commit comments

Comments
 (0)