We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0927227 commit 8bfffa5Copy full SHA for 8bfffa5
objectbox/query.py
@@ -46,7 +46,7 @@ def find_ids(self) -> List[int]:
46
c_id_array_p = obx_query_find_ids(self._c_query)
47
try:
48
c_id_array: OBX_id_array = c_id_array_p.contents
49
- ids = ctypes.cast(c_id_array.ids, ctypes.POINTER(ctypes.c_ulonglong * c_id_array.count))
+ ids = ctypes.cast(c_id_array.ids, ctypes.POINTER(obx_id * c_id_array.count))
50
return list(ids.contents)
51
finally:
52
obx_id_array_free(c_id_array_p)
0 commit comments