andishgar commented on code in PR #47204:
URL: https://github.com/apache/arrow/pull/47204#discussion_r2315163245
##########
cpp/src/arrow/compare.h:
##########
@@ -83,6 +83,38 @@ class EqualOptions {
return res;
}
+ /// Whether the \ref arrow::Schema property is used in the comparison.
+ ///
+ /// This option only affects the Equals methods
+ /// and has no effect on ApproxEquals methods.
+ bool use_schema() const { return use_schema_; }
+
+ /// Return a new EqualOptions object with the "use_schema_" property changed.
+ ///
+ /// Setting this option is false making the value of \ref
EqualOptions::use_metadata_
+ /// is ignored.
+ EqualOptions use_schema(bool v) const {
+ auto res = EqualOptions(*this);
+ res.use_schema_ = v;
+ return res;
+ }
+
+ /// Whether the "metadata" in \ref arrow::Schema is used in the comparison.
+ ///
+ /// This option only affects the Equals methods
+ /// and has no effect on the ApproxEquals methods.
+ ///
+ /// Note: This option is only considered when \ref
arrow::EqualOptions::use_schema_ is
Review Comment:
I mean, for example, you mentioned
[here](https://github.com/apache/arrow/pull/47204#discussion_r2311349646) not
to put a dot `.` at the end of sentences following `\brief`, but the
documentation shows a [dot
`.`](https://doxygen.nl/manual/commands.html#cmdauthor). Is there any rule I
should follow regarding this?
--
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]