You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
internal_err! is used as a general error macro in many spots in the code where in fact the problem the error is propagating is not caused by an oversight, bug, etc in the code but rather by user error. A good example of this can be seen in PR #9137comment where it's being used to let the user know they provided a datatype as an argument to a function that it doesn't support. This in fact should be an exec_err! in this example.
To Reproduce
No response
Expected behavior
In most cases where the error is caused by incorrect data types or invalid argument counts exec_err! should be used.
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
internal_err! is used as a general error macro in many spots in the code where in fact the problem the error is propagating is not caused by an oversight, bug, etc in the code but rather by user error. A good example of this can be seen in PR #9137 comment where it's being used to let the user know they provided a datatype as an argument to a function that it doesn't support. This in fact should be an exec_err! in this example.
To Reproduce
No response
Expected behavior
In most cases where the error is caused by incorrect data types or invalid argument counts exec_err! should be used.
Additional context
No response
The text was updated successfully, but these errors were encountered: