lance-format / lance-format/lance

Order by column should be eagerly materialized when it is small

Open
#5,290 4 comments 0 reactions 1 assignee View on GitHub

@kaori-seasons is already working on this.

Since Nov 25, 2025.

enhancement
Dominant language
Rust
Stars
7.1k
Forks
852
Avg merge
3d 18h
Merged PRs (30d)
272

Description

import lance
import lance.debug
import pyarrow as pa
import shutil

shutil.rmtree("/tmp/test.lance", ignore_errors=True)

table = pa.table({"a": [1, 2, 3], "b": [4, 5, 6]})
ds = lance.write_dataset(table, "/tmp/test.lance")

print(ds.scanner(columns=["_rowid", "a"], order_by=["b"]).explain_plan())

I would not expect there to be a TakeExec but there is.

Furthermore, the scan fails if _rowid is not manually specified (this should not be required)

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.