kou commented on issue #44243: URL: https://github.com/apache/arrow/issues/44243#issuecomment-2378382291
Arrow data is immutable. So you can't delete a row from existing Arrow data. You need to create a new Arrow data that doesn't have the target row. If you want to use a compute function, we have `filter` function: https://arrow.apache.org/docs/cpp/compute.html#selections It selects only the specified rows. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
