Skip to content
Merged
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
3 changes: 2 additions & 1 deletion docs/src/guide/data_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ ds = lance.write_dataset(table, "./with_metadata.lance")
### Map Types

Store key-value pairs with dynamic keys:
Map writes require Lance file format version 2.2 or later.

```python
import lance
Expand All @@ -301,7 +302,7 @@ table = pa.Table.from_pydict({
],
}, schema=schema)

ds = lance.write_dataset(table, "./with_maps.lance")
ds = lance.write_dataset(table, "./with_maps.lance", data_storage_version="2.2")
```

## Data Type Mapping for Integrations
Expand Down