Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
8a0e6df
feat: Add support for decimal.Decimal object
RaphDal Oct 13, 2025
4826301
feat: add support to arrow's decimals
RaphDal Oct 15, 2025
7aae3a8
tests: add serialization tests for decimals
RaphDal Oct 16, 2025
856c809
feat: uses binary format for decimal object
RaphDal Oct 16, 2025
5772e0e
fix: correct enum value for col_source_decimal_pyobj
RaphDal Oct 17, 2025
1d4c69f
Merge branch 'main' into rd_decimal
RaphDal Oct 20, 2025
b62520a
fix: hold GIL when working with py_obj
RaphDal Nov 7, 2025
5d7ee5e
tests: fix test to work with new protocol version 3
RaphDal Nov 7, 2025
0d7017f
adding print to debug failing test
RaphDal Nov 7, 2025
48e9709
Remove GIL requirement for arrow decimals
RaphDal Nov 7, 2025
5b4cbfa
fix: update decimal source enum values for compatibility
RaphDal Nov 7, 2025
c2c19d7
test: add debug print for bad protocol version handling
RaphDal Nov 7, 2025
9b00b39
refactor: remove debug print statements for protocol version handling
RaphDal Nov 7, 2025
cad427c
fix: restore conditional for expected timestamp type based on QuestDB…
RaphDal Nov 7, 2025
674e83c
tests: add decimal support tests for pyarrow and decimal types
RaphDal Nov 7, 2025
784d8b9
feat: support decimal serialization directly from column
RaphDal Nov 7, 2025
94dba61
fix: adjust byte length calculation for unscaled object in decimal co…
RaphDal Nov 7, 2025
3a57ea4
fix: add decimal repo test in ci
RaphDal Nov 7, 2025
00ff8a4
fix: correct byte length calculation for unscaled object in decimal c…
RaphDal Nov 7, 2025
6990a20
fix: update pyarrow import handling
RaphDal Nov 7, 2025
0de7bfd
fix: remove decimal branch compilation from CI pipeline
RaphDal Nov 11, 2025
ec21a54
fix: add table creation for decimal tests in system tests
RaphDal Nov 11, 2025
ac4350a
fix: update subproject commit reference for c-questdb-client
RaphDal Nov 11, 2025
6b1f263
fix: update decimal column name in table creation for system tests
RaphDal Nov 11, 2025
8c3b485
updated submodule
amunra Nov 17, 2025
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor: remove debug print statements for protocol version handling
  • Loading branch information
RaphDal committed Nov 7, 2025
commit 9b00b39b8838ec1f8b9fbc3ca875e7ca4d628b32
1 change: 0 additions & 1 deletion src/questdb/ingress.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,6 @@ cdef class Buffer:
:param int init_buf_size: Initial capacity of the buffer in bytes.
:param int max_name_len: Maximum length of a table or column name.
"""
print('Buffer protocol_version:', protocol_version)
if protocol_version not in range(1, 4):
raise IngressError(
IngressErrorCode.ProtocolVersionError,
Expand Down
3 changes: 0 additions & 3 deletions test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,6 @@ def test_bad_protocol_versions(self):
0,
4,
'4',
1.5,
'1.5',
'2.0',
]
Expand All @@ -434,9 +433,7 @@ def test_bad_protocol_versions(self):
bad_versions.append(None)
for version in bad_versions:
with self.assertRaises(Exception) as capture:
print("Testing bad protocol version:", version)
qi.Buffer(protocol_version=version)
print("Should not have reached here - constructed buffer", version)
self.fail('Should not have reached here - constructing buffer')

self.assertIn(type(capture.exception), (qi.IngressError, TypeError))
Expand Down
Loading