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
4 changes: 2 additions & 2 deletions docs/src/guide/distributed_write.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ import lance
ds = lance.dataset(data_uri)
read_version = ds.version # record the read version

op = lance.LanceOperation.Append(schema, all_fragments)
op = lance.LanceOperation.Append(all_fragments)
Copy link
Copy Markdown
Member

@HaochengLIU HaochengLIU Dec 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lance.LanceDataset.commit(
data_uri,
op,
Expand Down Expand Up @@ -262,4 +262,4 @@ Output:
5 6 Frank 92
6 7 Gracie 88
7 8 Henry 82
```
```