jorgecarleitao commented on a change in pull request #317: URL: https://github.com/apache/arrow-rs/pull/317#discussion_r638437150
########## File path: arrow/src/error.rs ########## @@ -110,6 +111,7 @@ impl Display for ArrowError { ArrowError::SchemaError(desc) => write!(f, "Schema error: {}", desc), ArrowError::ComputeError(desc) => write!(f, "Compute error: {}", desc), ArrowError::DivideByZero => write!(f, "Divide by zero error"), + ArrowError::ModulusByZero => write!(f, "Modulus by zero error"), Review comment: I would not add a new error for this; can't we use `ComputeError` or `DivideByZero`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org