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 94eeeff commit ad3f43cCopy full SHA for ad3f43c
tiledb/oxidize/arrow/src/record_batch.rs
@@ -105,11 +105,6 @@ pub unsafe fn to_record_batch(
105
.all(|(f, c)| f.data_type() == c.data_type())
106
);
107
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
-
113
// SAFETY: dependent on the correctness of `tile_to_arrow_array` AND the integrity of
114
// the underlying `ResultTile`.
115
// Neither of these conditions is a recoverable error from the user perspective -
0 commit comments