mirror of
https://github.com/langchain-ai/datafusion-example-emil.git
synced 2026-07-01 20:54:00 -04:00
21 lines
389 B
Markdown
21 lines
389 B
Markdown
## Prerequisites
|
|
|
|
- Rust (latest stable version)
|
|
- Cargo
|
|
|
|
## Quick Start
|
|
|
|
1. **Build and run in release mode**:
|
|
```bash
|
|
cargo run --release --bin query_runner
|
|
```
|
|
|
|
The application will:
|
|
- Load the parquet file from `data/` directory
|
|
- Execute a point query
|
|
- Show logical and physical query plans
|
|
|
|
## Project Structure
|
|
|
|
- `src/main.rs` - query runner
|
|
- `data/` - parquet file(s) |