Skip to content

Commit e20629c

Browse files
committed
fix segfault
1 parent 97586f4 commit e20629c

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

opteryx/__version__.py

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

4-
__build__ = 1653
4+
__build__ = 1654
55
__author__ = "@joocer"
6-
__version__ = "0.26.0-beta.1653"
6+
__version__ = "0.26.0-beta.1654"
77

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

opteryx/compiled/structures/jsonl_decoder.pyx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33
# cython: cdivision=True
44
# cython: initializedcheck=False
55
# cython: infer_types=True
6-
# cython: wraparound=False
6+
# cython: wraparound=True
77
# cython: boundscheck=False
88

99
"""
1010
Fast JSONL decoder using Cython for performance-critical operations.
11-
12-
This decoder uses native C string operations instead of regex for better performance.
1311
"""
1412

1513
from libc.string cimport memchr, strlen, strstr, memcmp

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"
3-
version = "0.26.0-beta.1653"
3+
version = "0.26.0-beta.1654"
44
description = "Query your data, where it lives"
55
requires-python = '>=3.11'
66
readme = {file = "README.md", content-type = "text/markdown"}

0 commit comments

Comments
 (0)