Skip to content

Commit 67c6437

Browse files
committed
chore: up xxhash3 version
1 parent 3e96721 commit 67c6437

File tree

9 files changed

+80934
-212310
lines changed

9 files changed

+80934
-212310
lines changed

dev/build_counter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class VersionStatus(Enum):
2929

3030
__major_version__ = 0
3131
__minor_version__ = 6
32-
__revision_version__ = 32
32+
__revision_version__ = 33
3333
__author__ = "@joocer"
3434
__status__ = VersionStatus.RELEASE
3535

opteryx/__version__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# THIS FILE IS AUTOMATICALLY UPDATED DURING THE BUILD PROCESS
22
# DO NOT EDIT THIS FILE DIRECTLY
33

4-
__build__ = 371
4+
__build__ = 372
55
__author__ = "@joocer"
6-
__version__ = "0.6.32"
6+
__version__ = "0.6.33"
77
__lib__ = "opteryx-core"
8-
__build_date__ = "2026-02-28T10:52:30.702007+00:00Z"
8+
__build_date__ = "2026-02-28T11:09:02.308436+00:00Z"
99

1010
# Store the version here so:
1111
# 1) we don't load dependencies by storing it in __init__.py

opteryx/parquet_io/reader.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,9 @@ def fetch_columns(
337337
f"encodings={col_stats.get('encodings')})"
338338
)
339339
except Exception as e:
340-
raise RuntimeError(f"Failed to decode column '{col_name}' from {path}: {e}") from e
340+
raise RuntimeError(
341+
f"Failed to decode column '{path}:{rg_idx}:{col_name}': {e}"
342+
) from e
341343

342344
# Cache and add to results
343345
cache.set_column(path, rg_idx, col_name, decoded)
@@ -683,6 +685,7 @@ def _split_coalesced_buffers(
683685
def _fetch_rowgroup_task(
684686
filesystem: Any,
685687
path: str,
688+
rg_idx: int,
686689
column_work: List[_ColumnWorkItem],
687690
decoder: Any,
688691
submitted_ns: int,
@@ -709,7 +712,7 @@ def _fetch_rowgroup_task(
709712
decoded = decoder(raw_bytes, work.stats)
710713
if decoded is None:
711714
raise RuntimeError(
712-
f"Decoder returned None for column '{work.name}' "
715+
f"Decoder returned None for column '{path}:{rg_idx}:{work.name}' "
713716
f"(codec={work.stats.get('compression_codec')}, encodings={work.stats.get('encodings')})"
714717
)
715718
columns[work.name] = decoded
@@ -913,6 +916,7 @@ def _dispatch_reads() -> None:
913916
_fetch_rowgroup_task,
914917
filesystem,
915918
target.path,
919+
target.rg_idx,
916920
target.column_work,
917921
decoder_fn,
918922
now_ns,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "opteryx_core"
3-
version = "0.6.32"
3+
version = "0.6.33"
44
description = "Opteryx Query Engine"
55
requires-python = '>=3.13'
66
readme = {file = "README.md", content-type = "text/markdown"}

0 commit comments

Comments
 (0)