Paging Through a Parquet File in DuckDB: File_row_number or Offset?
rustyconover
38 points
5 comments
July 30, 2026
Related Discussions
Found 5 related stories in 399.1ms across 15,510 title embeddings via pgvector HNSW
- DuckDB 1.5.0 erikcw · 15 pts · March 10, 2026 · 49% similar
- Full-Text Search with DuckDB ethagnawl · 111 pts · April 30, 2026 · 47% similar
- Choose DuckDB rather than SQLite rubenvanwyk · 85 pts · July 29, 2026 · 47% similar
- DuckPGQ – A DuckDB community extension for graph workloads rzk · 49 pts · July 24, 2026 · 46% similar
- Announcing DuckDB 1.5.0 bluehat974 · 13 pts · March 09, 2026 · 44% similar
Discussion Highlights (2 comments)
matharmin
I'd assume it's common knowledge that you cannot paginate using OFFSET + LIMIT unless you use ORDER BY on an unique set of columns, no matter what database you're using. The only exception is when the database provides an explicit order guarantee without the ORDER BY, such as the case with `preserve_insertion_order = true` here.
RobinL
There's also a pseudocolumn called rowid that's worth knowing about for similar purposes but on duckdb tables: https://duckdb.org/docs/lts/sql/statements/select#:~:text=Ro...