Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ DRAW line
▼ │
┌─────────────┐ │
│ DataFrame │ │
(Polars) │ │
(Arrow) │ │
└──────┬──────┘ │
│ │
└──────────┬───────────┘
Expand Down Expand Up @@ -534,7 +534,7 @@ pub trait Reader {

- In-memory databases: `duckdb://memory`
- File-based databases: `duckdb://path/to/file.db`
- SQL execution → Polars DataFrame conversion
- SQL execution → Arrow DataFrame conversion
- Comprehensive type handling

**Connection Parsing** (`connection.rs`):
Expand Down Expand Up @@ -1333,9 +1333,9 @@ VIZ: "VISUALISE DRAW line MAPPING sale_date AS x, ..."
```rust
// duckdb.rs
connection.execute(sql) → ResultSet
ResultSet → DataFrame (Polars)
ResultSet → DataFrame (Arrow RecordBatch)

// DataFrame columns: sale_date (Date32), region (String), total (Int64)
// DataFrame columns: sale_date (Date32), region (Utf8), total (Int64)
// Date32 values converted to ISO format: "2024-01-01"
```

Expand Down
Loading
Loading