diff options
author | Brian S. O'Neill <bronee@gmail.com> | 2006-09-04 23:47:05 +0000 |
---|---|---|
committer | Brian S. O'Neill <bronee@gmail.com> | 2006-09-04 23:47:05 +0000 |
commit | b3444c71bf298e9c62a8fcd35ee0e83772e0fe82 (patch) | |
tree | a487e6890bf4a695c1d2981ab20874db024430fb /src/main/java/com/amazon/carbonado | |
parent | 49d0e32955c647f33dbfbec592cd77fba3c7d8fa (diff) |
Rollback from revision 69.
Diffstat (limited to 'src/main/java/com/amazon/carbonado')
-rw-r--r-- | src/main/java/com/amazon/carbonado/qe/OrderingScore.java | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/main/java/com/amazon/carbonado/qe/OrderingScore.java b/src/main/java/com/amazon/carbonado/qe/OrderingScore.java index a2b46b9..ce85cb6 100644 --- a/src/main/java/com/amazon/carbonado/qe/OrderingScore.java +++ b/src/main/java/com/amazon/carbonado/qe/OrderingScore.java @@ -224,13 +224,6 @@ public class OrderingScore<S extends Storable> { }
// Property not handled and not an identity filter.
-
- if (property.getDirection() == UNSPECIFIED) {
- // Specify a direction in order for a comparator to be later
- // created from remainder orderings.
- property = property.direction(ASCENDING);
- }
-
remainderProperties.add(property);
indexPos = Integer.MAX_VALUE;
}
@@ -324,9 +317,7 @@ public class OrderingScore<S extends Storable> { /**
* Returns the ordering properties that the evaluated index does not
- * support. The list of orderings is reduced to eliminate redundancies. If
- * any remainder ordering properties originally had an unspecified
- * direction, the direction in this list is specified as ascending.
+ * support. The list of orderings is reduced to eliminate redundancies.
*
* @return remainder orderings, never null
*/
|