Skip to content

Commit

Permalink
change assert to debug assert
Browse files Browse the repository at this point in the history
  • Loading branch information
desmondcheongzx committed Dec 20, 2024
1 parent 6b2b123 commit 62817c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daft-functions/src/uri/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ fn prepare_folder_paths(
instantiate_and_trim_path(folder_path, true, &mut instantiated_folder_paths)?;
Ok(repeat(folder_path).take(len).collect())
} else {
assert_eq!(arr.len(), len);
debug_assert_eq!(arr.len(), len);
Ok(arr
.as_arrow()
.iter()
Expand Down

0 comments on commit 62817c6

Please sign in to comment.