Skip to content

Commit

Permalink
Explicitly set the numpy type in _write_array
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis committed Jan 3, 2025
1 parent 759e9f8 commit c9f914e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiledb/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ def _write_array(
q.set_data_buffer(
buffer_name,
output_values[i],
buffer_sizes[i] * ncells,
np.uint64(buffer_sizes[i] * ncells),
)

# Set offsets buffer
Expand Down

0 comments on commit c9f914e

Please sign in to comment.