kou commented on code in PR #47164:
URL: https://github.com/apache/arrow/pull/47164#discussion_r2227324901


##########
cpp/src/arrow/table.h:
##########
@@ -207,7 +207,8 @@ class ARROW_EXPORT Table {
   ///
   /// Two tables can be equal only if they have equal schemas.
   /// However, they may be equal even if they have different chunkings.
-  bool Equals(const Table& other, bool check_metadata = false) const;
+  bool Equals(const Table& other, bool check_metadata = false,
+              const EqualOptions& = EqualOptions::Defaults()) const;

Review Comment:
   Can we add `check_metadata` to `EqualOptions` and add `bool Equals(const 
Table& other, const EqualOptions& options) const;` instead of changing the 
existing `Equals()`?



-- 
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: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to