Github user wgtmac commented on a diff in the pull request:
https://github.com/apache/orc/pull/123#discussion_r117397662
--- Diff: c++/include/orc/Vector.hh ---
@@ -194,6 +194,14 @@ namespace orc {
int32_t scale;
};
+ /**
+ * Compares two decimals
+ * @param decimal1 1st decimal to compare
+ * @param decimal2 2nd decimal to compare
+ * @return true is decimal1 is less than decimal2; otherwise false
+ */
+ bool operator<(Decimal decimal1, Decimal decimal2);
--- End diff --
Decimal and Int128 are in the public APIs as well.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---