lance-format/lance
Ver no GitHub[DuckDB] Implement replacement scan function for Lance Scan in DuckDB
Open
#641 aberto em 25 de fev. de 2023
duckdbgood first issuehelp wantedrust
Métricas do repositório
- Stars
- (6.582 stars)
- Métricas de merge de PR
- (Mesclagem média 6d 1h) (219 fundiu PRs em 30d)
Description
Problem Statement
DuckDB has a concept of replacement scan when the URL of dataset matches to certain pattern, the URL itself can be used to indicate which scan function to call,
For example,
SELECT * FROM s3://foo/bar/zoo.lance
-- Replace
SELECT * FROM lance_scan("s3://foo/bar/zoo.lance")
Reference of the old (c++) implementation
Desired Behavior
Re-enable the scan replacement of lance scan in the rust-based duckdb extension.