Github user joshelser commented on a diff in the pull request:
https://github.com/apache/accumulo/pull/247#discussion_r111168254
--- Diff:
core/src/main/java/org/apache/accumulo/core/iterators/OrIterator.java ---
@@ -39,29 +39,44 @@
import org.slf4j.LoggerFactory;
/**
- * An iterator that handles "OR" query constructs on the server side. This
code has been adapted/merged from Heap and Multi Iterators.
+ * An iterator that provides a sorted-iteration of column qualifiers for a
set of column families in a row.
+ * It is important to note that this iterator <em>does not</em> adhere to
the contract set forth by the
+ * {@link SortedKeyValueIterator}. It returns Keys in {@code row+colqual}
order instead of
+ * {@code row+colfam+colqual} order. This is required for the
implementation of this iterator (to work
+ * in conjunction with the {@code IntersectingIterator}) but is a
code-smell. This iterator should only
--- End diff --
Hahaha, whew. Glad to have shared a new piece of lingo with ya.
---
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.
---