We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f51b964 commit b2ab2d8Copy full SHA for b2ab2d8
1 file changed
src/tidesdb/tidesdb.py
@@ -31,7 +31,7 @@
31
c_double,
32
c_float,
33
c_int,
34
- c_long,
+ c_int64,
35
c_size_t,
36
c_uint8,
37
c_uint32,
@@ -213,7 +213,7 @@ class _CCommitOp(Structure):
213
("key_size", c_size_t),
214
("value", POINTER(c_uint8)),
215
("value_size", c_size_t),
216
- ("ttl", c_long),
+ ("ttl", c_int64),
217
("is_delete", c_int),
218
]
219
@@ -311,7 +311,7 @@ class _CCacheStats(Structure):
311
312
POINTER(c_uint8),
313
314
315
316
_lib.tidesdb_txn_put.restype = c_int
317
0 commit comments