Support macro ensure_or_internal_err
to clean up repeated sanity checks
#15492
Labels
enhancement
New feature or request
Is your feature request related to a problem or challenge?
When implementing complex logic, it's common to include assertions as sanity checks to catch potential errors.
The Rust
assert!(...)
macro will panic if the condition is false, but in most cases, we want to avoid panicking (which would crash the application). Instead, we prefer to return an internal error to indicate a potential bug. For example:datafusion/datafusion/physical-plan/src/joins/hash_join.rs
Lines 786 to 792 in e2b7919
Describe the solution you'd like
Implement a macro to throw an internal error when assertion failed
Perhaps we can create another
forbid_or_internal_err
for false assertions to make it more clear 🤔I think this approach only cleaned things up a little, but this check-and-internal-err pattern is very common (used hundreds of times inside the current datafusion source), so I think this chore task is worth the effort.
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: