Skip to content

Commit ad3f43c

Browse files
committed
Remove assert post rebase
1 parent 94eeeff commit ad3f43c

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tiledb/oxidize/arrow/src/record_batch.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,6 @@ pub unsafe fn to_record_batch(
105105
.all(|(f, c)| f.data_type() == c.data_type())
106106
);
107107

108-
// SAFETY: `schema` has at least one field.
109-
// This is not required in general, but `schema` is a projection of an `ArraySchema`
110-
// which always has at least one dimension.
111-
assert!(!columns.is_empty());
112-
113108
// SAFETY: dependent on the correctness of `tile_to_arrow_array` AND the integrity of
114109
// the underlying `ResultTile`.
115110
// Neither of these conditions is a recoverable error from the user perspective -

0 commit comments

Comments
 (0)