Skip to content

Commit 48e9709

Browse files
Remove GIL requirement for arrow decimals
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 0d7017f commit 48e9709

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/questdb/dataframe.pxi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@ cdef enum col_source_t:
150150
col_source_dt64ns_tz_arrow = 502000
151151
col_source_arr_f64_numpyobj = 601100
152152
col_source_decimal_pyobj = 701100
153-
col_source_decimal32_arrow = 702100
154-
col_source_decimal64_arrow = 703100
155-
col_source_decimal128_arrow = 704100
156-
col_source_decimal256_arrow = 705100
153+
col_source_decimal32_arrow = 702000
154+
col_source_decimal64_arrow = 703000
155+
col_source_decimal128_arrow = 704000
156+
col_source_decimal256_arrow = 705000
157157

158158

159159
cdef bint col_source_needs_gil(col_source_t source) noexcept nogil:

0 commit comments

Comments
 (0)