summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Seyster <justin.seyster@mongodb.com>2019-10-08 17:09:34 +0000
committerevergreen <evergreen@mongodb.com>2019-10-08 17:09:34 +0000
commitd22968677a25ccd587fdadc7106b181780393736 (patch)
treeb1bb98bfeb6a64d465392b5bf08ab856c046fa62
parent265bdc7e2358eac75cc61943d97c8cb6860e667c (diff)
downloadmongo-d22968677a25ccd587fdadc7106b181780393736.tar.gz
SERVER-42836 Fast path for sort key generation of WorkingSetMembers
(Also includes a comment fixup in document_value_test.cpp that was intended for a previous commit.)
-rw-r--r--jstests/aggregation/group_conversion_to_distinct_scan.js6
-rw-r--r--jstests/sharding/fts_score_sort_sharded.js42
-rw-r--r--src/mongo/db/exec/document_value/document_value_test.cpp6
-rw-r--r--src/mongo/db/exec/sort_key_generator.cpp14
-rw-r--r--src/mongo/db/index/sort_key_generator.cpp99
-rw-r--r--src/mongo/db/index/sort_key_generator.h102
-rw-r--r--src/mongo/db/index/sort_key_generator_test.cpp15
7 files changed, 148 insertions, 136 deletions
diff --git a/jstests/aggregation/group_conversion_to_distinct_scan.js b/jstests/aggregation/group_conversion_to_distinct_scan.js
index 90b25268a7c..226dea6f584 100644
--- a/jstests/aggregation/group_conversion_to_distinct_scan.js
+++ b/jstests/aggregation/group_conversion_to_distinct_scan.js
@@ -44,7 +44,7 @@ assert.commandWorked(coll.insert([
{_id: 3, a: 1, b: 3, c: 2},
{_id: 4, a: 2, b: 2, c: 2},
{_id: 5, b: 1, c: 1},
- {_id: 6, a: null, b: 1, c: 1},
+ {_id: 6, a: null, b: 1, c: 1.5},
{_id: 7, aa: 1, mkB: 2, bb: 2},
{_id: 8, aa: 1, mkB: [1, 3], bb: 1},
@@ -224,9 +224,9 @@ assert.eq(null, getAggPlanStage(explain, "SORT"), explain);
// Verify that a $sort-$group pipeline can use DISTINCT_SCAN when a $first accumulator needs the
// entire document.
//
-pipeline = [{$sort: {a: -1, b: -1}}, {$group: {_id: "$a", accum: {$first: "$$ROOT"}}}];
+pipeline = [{$sort: {a: -1, b: -1, c: -1}}, {$group: {_id: "$a", accum: {$first: "$$ROOT"}}}];
assertResultsMatchWithAndWithoutHintandIndexes(pipeline, [
- {_id: null, accum: {_id: 6, a: null, b: 1, c: 1}},
+ {_id: null, accum: {_id: 6, a: null, b: 1, c: 1.5}},
{_id: 1, accum: {_id: 3, a: 1, b: 3, c: 2}},
{_id: 2, accum: {_id: 4, a: 2, b: 2, c: 2}}
]);
diff --git a/jstests/sharding/fts_score_sort_sharded.js b/jstests/sharding/fts_score_sort_sharded.js
index e49703821f3..a6447cb4b38 100644
--- a/jstests/sharding/fts_score_sort_sharded.js
+++ b/jstests/sharding/fts_score_sort_sharded.js
@@ -34,11 +34,11 @@ assert.commandWorked(coll.ensureIndex({a: "text"}));
var results = coll.find({$text: {$search: "pizza"}}, {s: {$meta: "textScore"}})
.sort({s: {$meta: "textScore"}})
.toArray();
-assert.eq(results.length, 4);
-assert.eq(results[0]._id, -2);
-assert.eq(results[1]._id, 2);
-assert.eq(results[2]._id, -1);
-assert.eq(results[3]._id, 1);
+assert.eq(results.length, 4, results);
+assert.eq(results[0]._id, -2, results);
+assert.eq(results[1]._id, 2, results);
+assert.eq(results[2]._id, -1, results);
+assert.eq(results[3]._id, 1, results);
//
// Verify that mongos requires the text metadata sort to be specified in the projection.
@@ -68,6 +68,36 @@ assert.throws(function() {
cursor.next();
});
-// TODO Test sort on compound key.
+//
+// Execute query with a compound sort that includes the text score along with a multikey field.
+//
+
+coll.drop();
+assert.commandWorked(coll.insert({_id: 0, a: "pizza", b: [1, 4]}));
+assert.commandWorked(coll.insert({_id: 1, a: "pizza pizza", b: [6, 7]}));
+assert.commandWorked(coll.insert({_id: 2, a: "pizza", b: [2, 3]}));
+assert.commandWorked(coll.insert({_id: 3, a: "pizza pizza", b: [5, 8]}));
+assert.commandWorked(coll.ensureIndex({a: "text"}));
+
+results = coll.find({$text: {$search: "pizza"}}, {s: {$meta: "textScore"}})
+ .sort({s: {$meta: "textScore"}, b: 1})
+ .toArray();
+assert.eq(results.length, 4, results);
+assert.eq(results[0]._id, 3, results);
+assert.eq(results[1]._id, 1, results);
+assert.eq(results[2]._id, 0, results);
+assert.eq(results[3]._id, 2, results);
+
+//
+// Repeat the query with an aggregation pipeline and verify that the result is the same.
+//
+
+var aggResults = coll.aggregate([
+ {$match: {$text: {$search: "pizza"}}},
+ {$addFields: {s: {$meta: "textScore"}}},
+ {$sort: {s: {$meta: "textScore"}, b: 1}}
+ ])
+ .toArray();
+assert.eq(results, aggResults);
st.stop();
diff --git a/src/mongo/db/exec/document_value/document_value_test.cpp b/src/mongo/db/exec/document_value/document_value_test.cpp
index ec88349e67d..a3092b636b1 100644
--- a/src/mongo/db/exec/document_value/document_value_test.cpp
+++ b/src/mongo/db/exec/document_value/document_value_test.cpp
@@ -857,9 +857,11 @@ public:
}
};
-/** SERVER-43205: Constructing a Value with a very large BSONElement string causes the Value
+/**
+ * SERVER-43205: Constructing a Value with a very large BSONElement string causes the Value
* constructor to throw before it can completely initialize its ValueStorage member, which has the
- * potential to lead to incorrect state. */
+ * potential to lead to incorrect state.
+ */
class LongString {
public:
void run() {
diff --git a/src/mongo/db/exec/sort_key_generator.cpp b/src/mongo/db/exec/sort_key_generator.cpp
index f8c81395b8a..0d18dc37d7b 100644
--- a/src/mongo/db/exec/sort_key_generator.cpp
+++ b/src/mongo/db/exec/sort_key_generator.cpp
@@ -68,16 +68,16 @@ PlanStage::StageState SortKeyGeneratorStage::doWork(WorkingSetID* out) {
if (stageState == PlanStage::ADVANCED) {
WorkingSetMember* member = _ws->get(*out);
- auto sortKey = _sortKeyGen.computeSortKey(*member);
- if (!sortKey.isOK()) {
- *out = WorkingSetCommon::allocateStatusMember(_ws, sortKey.getStatus());
+ try {
+ auto sortKey = _sortKeyGen.computeSortKey(*member);
+
+ // Add the sort key to the WSM as metadata.
+ member->metadata().setSortKey(std::move(sortKey), _sortKeyGen.isSingleElementKey());
+ } catch (const DBException& computeSortKeyException) {
+ *out = WorkingSetCommon::allocateStatusMember(_ws, computeSortKeyException.toStatus());
return PlanStage::FAILURE;
}
- // Add the sort key to the WSM as metadata.
- member->metadata().setSortKey(std::move(sortKey.getValue()),
- _sortKeyGen.isSingleElementKey());
-
return PlanStage::ADVANCED;
}
diff --git a/src/mongo/db/index/sort_key_generator.cpp b/src/mongo/db/index/sort_key_generator.cpp
index 97abfe097a7..a09622bb316 100644
--- a/src/mongo/db/index/sort_key_generator.cpp
+++ b/src/mongo/db/index/sort_key_generator.cpp
@@ -76,30 +76,15 @@ SortKeyGenerator::SortKeyGenerator(SortPattern sortPattern, const CollatorInterf
Ordering::make(_sortSpecWithoutMeta));
}
-// TODO (SERVER-42836): Once WorkingSetMember objects store a Document (SERVER-42181), this function
-// will be able to use the Document overload of computeSortKeyFromDocument, and it will be able to
-// store the text score with the Document instead of in a separate SortKeyGenerator::Metadata
-// object.
-StatusWith<Value> SortKeyGenerator::computeSortKey(const WorkingSetMember& wsm) const {
+Value SortKeyGenerator::computeSortKey(const WorkingSetMember& wsm) const {
if (wsm.hasObj()) {
- SortKeyGenerator::Metadata metadata;
- if (_sortHasMeta && wsm.metadata().hasTextScore()) {
- metadata.textScore = wsm.metadata().getTextScore();
- }
- auto statusWithSortKeyObj = computeSortKeyFromDocument(wsm.doc.value().toBson(), &metadata);
- if (!statusWithSortKeyObj.isOK()) {
- return statusWithSortKeyObj.getStatus();
- }
-
- return DocumentMetadataFields::deserializeSortKey(isSingleElementKey(),
- statusWithSortKeyObj.getValue());
+ return computeSortKeyFromDocument(wsm.doc.value(), wsm.metadata());
}
return computeSortKeyFromIndexKey(wsm);
}
-StatusWith<Value> SortKeyGenerator::computeSortKeyFromIndexKey(
- const WorkingSetMember& member) const {
+Value SortKeyGenerator::computeSortKeyFromIndexKey(const WorkingSetMember& member) const {
invariant(member.getState() == WorkingSetMember::RID_AND_IDX);
invariant(!_sortHasMeta);
@@ -118,16 +103,9 @@ StatusWith<Value> SortKeyGenerator::computeSortKeyFromIndexKey(
return DocumentMetadataFields::deserializeSortKey(isSingleElementKey(), objBuilder.obj());
}
-StatusWith<BSONObj> SortKeyGenerator::computeSortKeyFromDocument(const BSONObj& obj,
- const Metadata* metadata) const {
- if (_sortHasMeta) {
- invariant(metadata);
- }
-
- auto sortKeyNoMetadata = computeSortKeyFromDocumentWithoutMetadata(obj);
- if (!sortKeyNoMetadata.isOK()) {
- return sortKeyNoMetadata;
- }
+BSONObj SortKeyGenerator::computeSortKeyFromDocument(const BSONObj& obj,
+ const DocumentMetadataFields& metadata) const {
+ auto sortKeyNoMetadata = uassertStatusOK(computeSortKeyFromDocumentWithoutMetadata(obj));
if (!_sortHasMeta) {
// We don't have to worry about $meta sort, so the index key becomes the sort key.
@@ -137,24 +115,27 @@ StatusWith<BSONObj> SortKeyGenerator::computeSortKeyFromDocument(const BSONObj&
BSONObjBuilder mergedKeyBob;
// Merge metadata into the key.
- BSONObjIterator sortKeyIt(sortKeyNoMetadata.getValue());
+ BSONObjIterator sortKeyIt(sortKeyNoMetadata);
for (auto& part : _sortPattern) {
if (part.fieldPath) {
invariant(sortKeyIt.more());
mergedKeyBob.append(sortKeyIt.next());
continue;
}
+
+ // Create a Document that represents the input object and its metadata together, so we can
+ // use it to evaluate the ExpressionMeta for this part of the sort pattern. This operation
+ // copies the data in 'metadata' but not any of the data in the 'obj' BSON.
+ MutableDocument documentWithMetdata(Document{obj});
+ documentWithMetdata.setMetadata(DocumentMetadataFields(metadata));
+
invariant(part.expression);
- switch (part.expression->getMetaType()) {
- case DocumentMetadataFields::MetaType::kTextScore: {
- mergedKeyBob.append("", metadata->textScore);
- continue;
- }
- case DocumentMetadataFields::MetaType::kRandVal: {
- mergedKeyBob.append("", metadata->randVal);
- continue;
- }
- default: { MONGO_UNREACHABLE; }
+ auto value =
+ part.expression->evaluate(documentWithMetdata.freeze(), nullptr /* variables */);
+ if (!value.missing()) {
+ value.addToBsonObj(&mergedKeyBob, ""_sd);
+ } else {
+ mergedKeyBob.appendNull("");
}
}
@@ -231,7 +212,9 @@ Value SortKeyGenerator::getCollationComparisonKey(const Value& val) const {
}
StatusWith<Value> SortKeyGenerator::extractKeyPart(
- const Document& doc, const SortPattern::SortPatternPart& patternPart) const {
+ const Document& doc,
+ const DocumentMetadataFields& metadata,
+ const SortPattern::SortPatternPart& patternPart) const {
Value plainKey;
if (patternPart.fieldPath) {
invariant(!patternPart.expression);
@@ -243,22 +226,28 @@ StatusWith<Value> SortKeyGenerator::extractKeyPart(
plainKey = key.getValue();
} else {
invariant(patternPart.expression);
+ // ExpressionMeta expects metadata to be attached to the document.
+ MutableDocument documentWithMetadata(doc);
+ documentWithMetadata.setMetadata(DocumentMetadataFields(metadata));
+
// ExpressionMeta does not use Variables.
- plainKey = patternPart.expression->evaluate(doc, nullptr /* variables */);
+ plainKey = patternPart.expression->evaluate(documentWithMetadata.freeze(),
+ nullptr /* variables */);
}
- return getCollationComparisonKey(plainKey);
+ return plainKey.missing() ? Value{BSONNULL} : getCollationComparisonKey(plainKey);
}
-StatusWith<Value> SortKeyGenerator::extractKeyFast(const Document& doc) const {
+StatusWith<Value> SortKeyGenerator::extractKeyFast(const Document& doc,
+ const DocumentMetadataFields& metadata) const {
if (_sortPattern.isSingleElementKey()) {
- return extractKeyPart(doc, _sortPattern[0]);
+ return extractKeyPart(doc, metadata, _sortPattern[0]);
}
std::vector<Value> keys;
keys.reserve(_sortPattern.size());
for (auto&& keyPart : _sortPattern) {
- auto extractedKey = extractKeyPart(doc, keyPart);
+ auto extractedKey = extractKeyPart(doc, metadata, keyPart);
if (!extractedKey.isOK()) {
// We can't use the fast path, so bail out.
return extractedKey;
@@ -269,24 +258,18 @@ StatusWith<Value> SortKeyGenerator::extractKeyFast(const Document& doc) const {
return Value{std::move(keys)};
}
-BSONObj SortKeyGenerator::extractKeyWithArray(const Document& doc) const {
- SortKeyGenerator::Metadata metadata;
- if (doc.metadata().hasTextScore()) {
- metadata.textScore = doc.metadata().getTextScore();
- }
- if (doc.metadata().hasRandVal()) {
- metadata.randVal = doc.metadata().getRandVal();
- }
-
+BSONObj SortKeyGenerator::extractKeyWithArray(const Document& doc,
+ const DocumentMetadataFields& metadata) const {
// Convert the Document to a BSONObj, but only do the conversion for the paths we actually need.
// Then run the result through the SortKeyGenerator to obtain the final sort key.
auto bsonDoc = _sortPattern.documentToBsonWithSortPaths(doc);
- return uassertStatusOK(computeSortKeyFromDocument(bsonDoc, &metadata));
+ return computeSortKeyFromDocument(bsonDoc, metadata);
}
-Value SortKeyGenerator::computeSortKeyFromDocument(const Document& doc) const {
+Value SortKeyGenerator::computeSortKeyFromDocument(const Document& doc,
+ const DocumentMetadataFields& metadata) const {
// This fast pass directly generates a Value.
- auto fastKey = extractKeyFast(doc);
+ auto fastKey = extractKeyFast(doc, metadata);
if (fastKey.isOK()) {
return std::move(fastKey.getValue());
}
@@ -295,7 +278,7 @@ Value SortKeyGenerator::computeSortKeyFromDocument(const Document& doc) const {
// form like BSONObj {'': 1, '': [2, 3]}) and converts it to a Value (Value [1, [2, 3]] in the
// earlier example).
return DocumentMetadataFields::deserializeSortKey(_sortPattern.isSingleElementKey(),
- extractKeyWithArray(doc));
+ extractKeyWithArray(doc, metadata));
}
} // namespace mongo
diff --git a/src/mongo/db/index/sort_key_generator.h b/src/mongo/db/index/sort_key_generator.h
index b6ea016139a..dd4b5031d05 100644
--- a/src/mongo/db/index/sort_key_generator.h
+++ b/src/mongo/db/index/sort_key_generator.h
@@ -41,16 +41,6 @@ namespace mongo {
class SortKeyGenerator {
public:
/**
- * Metadata about a document which is needed to produce keys for $meta sort. The client of the
- * SortKeyGenerator must provide this metadata in order to correctly obtain sort keys for sort
- * patterns with $meta.
- */
- struct Metadata {
- double textScore = 0.0;
- double randVal = 0.0;
- };
-
- /**
* Constructs a sort key generator which will generate keys for sort pattern 'sortPattern'. The
* keys will incorporate the collation given by 'collator', and thus when actually compared to
* one another should use the simple collation.
@@ -58,75 +48,87 @@ public:
SortKeyGenerator(SortPattern sortPattern, const CollatorInterface* collator);
/**
- * Returns the key which should be used to sort the WorkingSetMember, or a non-OK status if no
- * key could be generated. The WorkingSetMember may represent either an index key, or a document
- * (owned or unowned) that has been fetched from the collection.
+ * Returns the key which should be used to sort the WorkingSetMember or throws if no key could
+ * be generated. The WorkingSetMember may represent either an index key or a document (owned or
+ * unowned) that has been fetched from the collection.
*
* If the sort pattern contains a $meta sort (e.g. sort by "textScore" or "randVal"), then the
* necessary metadata is obtained from the WorkingSetMember.
*/
- StatusWith<Value> computeSortKey(const WorkingSetMember&) const;
+ Value computeSortKey(const WorkingSetMember&) const;
/**
- * Returns the sort key for the input 'doc' as a Value. When the sort pattern has multiple
- * components, the resulting sort key is a an Array-typed Value with one element for each
- * component. For sort pattern with just one component, the sort key is a Value that represents
- * the single element to sort on (which may or may not itself be an array).
+ * Returns the sort key for the input 'doc' as a Value or throws if no key could be generated.
+ * When the sort pattern has multiple components, the resulting sort key is an Array-typed Value
+ * with one element for each component. For sort patterns with just one component, the sort key
+ * is a Value that represents the single element to sort on (which may or may not itself be an
+ * array).
*
* The sort key is computed based on the sort pattern, the contents of the document, and if
- * required by $meta sort specifiers, metadata in the Document. This function throws if it
- * cannot compute the sort pattern.
+ * required by $meta sort specifiers, metadata in the Document.
*/
- Value computeSortKeyFromDocument(const Document& doc) const;
+ Value computeSortKeyFromDocument(const Document& doc) const {
+ return computeSortKeyFromDocument(doc, doc.metadata());
+ }
bool isSingleElementKey() const {
return _sortPattern.isSingleElementKey();
}
private:
- /**
- * Returns the key which should be used to sort 'obj', or a non-OK status if no key could be
- * generated.
- *
- * The caller must supply the appropriate 'metadata' in the case that the sort pattern includes
- * a $meta sort (i.e. if sortHasMeta() is true). These values are filled in at the corresponding
- * positions in the sort key.
- */
- StatusWith<BSONObj> computeSortKeyFromDocument(const BSONObj& obj, const Metadata*) const;
+ // Returns the sort key for the input 'doc' as a Value.
+ //
+ // Note that this function will ignore any metadata (e.g., textScore, randVal), in 'doc' but
+ // will instead read from the 'metadata' variable. When the metadata is contained in the 'doc'
+ // input, callers can use the public overload of this function.
+ Value computeSortKeyFromDocument(const Document& doc,
+ const DocumentMetadataFields& metadata) const;
+
+ // Returns the key which should be used to sort 'obj' or throws an exception if no key could be
+ // generated.
+ //
+ // The caller must supply the appropriate 'metadata' in the case that the sort pattern includes
+ // a $meta sort (i.e. if sortHasMeta() is true). These values are filled in at the corresponding
+ // positions in the sort key.
+ BSONObj computeSortKeyFromDocument(const BSONObj& obj,
+ const DocumentMetadataFields& metadata) const;
// Extracts the sort key from a WorkingSetMember which represents an index key. It is illegal to
// call this if the working set member is not in RID_AND_IDX state. It is also illegal to call
// this if the sort pattern has any $meta components.
- StatusWith<Value> computeSortKeyFromIndexKey(const WorkingSetMember& member) const;
+ Value computeSortKeyFromIndexKey(const WorkingSetMember& member) const;
// Extracts the sort key from 'obj', using '_sortSpecWithoutMeta' and thus ignoring any $meta
// sort components of the sort pattern. The caller is responsible for augmenting this key with
// the appropriate metadata if '_sortHasMeta' is true.
StatusWith<BSONObj> computeSortKeyFromDocumentWithoutMetadata(const BSONObj& obj) const;
- /**
- * Returns the sort key for 'doc' based on the SortPattern, or ErrorCodes::InternalError if an
- * array is encountered during sort key generation.
- */
- StatusWith<Value> extractKeyFast(const Document& doc) const;
-
- /**
- * Extracts the sort key component described by 'keyPart' from 'doc' and returns it. Returns
- * ErrorCodes::InternalError if the path for 'keyPart' contains an array in 'doc'.
- */
+ // Returns the sort key for 'doc' based on the SortPattern, or ErrorCodes::InternalError if an
+ // array is encountered during sort key generation.
+ //
+ // Note that this function will ignore any metadata (e.g., textScore, randVal), in 'doc' but
+ // will instead read from the 'metadata' variable.
+ StatusWith<Value> extractKeyFast(const Document& doc,
+ const DocumentMetadataFields& metadata) const;
+
+ // Extracts the sort key component described by 'keyPart' from 'doc' and returns it. Returns
+ // ErrorCodes::InternalError if the path for 'keyPart' contains an array in 'doc'.
+ //
+ // Note that this function will ignore any metadata (e.g., textScore, randVal), in 'doc' but
+ // will instead read from the 'metadata' variable.
StatusWith<Value> extractKeyPart(const Document& doc,
+ const DocumentMetadataFields& metadata,
const SortPattern::SortPatternPart& keyPart) const;
- /**
- * Returns the sort key for 'doc' based on the SortPattern. Note this is in the BSONObj format -
- * with empty field names.
- */
- BSONObj extractKeyWithArray(const Document& doc) const;
+ // Returns the sort key for 'doc' based on the SortPattern. Note this is in the BSONObj format -
+ // with empty field names.
+ //
+ // Note that this function will ignore any metadata (e.g., textScore, randVal), in 'doc' but
+ // will instead read from the 'metadata' variable.
+ BSONObj extractKeyWithArray(const Document& doc, const DocumentMetadataFields& metadata) const;
- /**
- * Returns the comparison key used to sort 'val' with collation. Note that these comparison keys
- * should always be sorted with the simple (i.e. binary) collation.
- */
+ // Returns the comparison key used to sort 'val' with collation. Note that these comparison keys
+ // should always be sorted with the simple (i.e. binary) collation.
Value getCollationComparisonKey(const Value& val) const;
const CollatorInterface* _collator = nullptr;
diff --git a/src/mongo/db/index/sort_key_generator_test.cpp b/src/mongo/db/index/sort_key_generator_test.cpp
index 0e6681926dc..29ca2039153 100644
--- a/src/mongo/db/index/sort_key_generator_test.cpp
+++ b/src/mongo/db/index/sort_key_generator_test.cpp
@@ -266,16 +266,14 @@ TEST_F(SortKeyGeneratorWorkingSetTest, CanGetSortKeyFromWorkingSetMemberWithObj)
auto sortKeyGen = makeSortKeyGen(BSON("a" << 1), nullptr);
setRecordIdAndObj(BSON("x" << 1 << "a" << 2 << "y" << 3));
auto sortKey = sortKeyGen->computeSortKey(member());
- ASSERT_OK(sortKey);
- ASSERT_VALUE_EQ(Value(2), sortKey.getValue());
+ ASSERT_VALUE_EQ(Value(2), sortKey);
}
TEST_F(SortKeyGeneratorWorkingSetTest, CanGetSortKeyFromWorkingSetMemberWithOwnedObj) {
auto sortKeyGen = makeSortKeyGen(BSON("a" << 1), nullptr);
setOwnedObj(BSON("x" << 1 << "a" << 2 << "y" << 3));
auto sortKey = sortKeyGen->computeSortKey(member());
- ASSERT_OK(sortKey);
- ASSERT_VALUE_EQ(Value(2), sortKey.getValue());
+ ASSERT_VALUE_EQ(Value(2), sortKey);
}
TEST_F(SortKeyGeneratorWorkingSetTest, CanGenerateKeyFromWSMForTextScoreMetaSort) {
@@ -284,16 +282,14 @@ TEST_F(SortKeyGeneratorWorkingSetTest, CanGenerateKeyFromWSMForTextScoreMetaSort
setOwnedObj(BSON("x" << 1 << "a" << 2 << "y" << 3 << "c" << BSON_ARRAY(4 << 5 << 6)));
member().metadata().setTextScore(9.9);
auto sortKey = sortKeyGen->computeSortKey(member());
- ASSERT_OK(sortKey);
- ASSERT_VALUE_EQ(Value({Value(2), Value(9.9), Value(6)}), sortKey.getValue());
+ ASSERT_VALUE_EQ(Value({Value(2), Value(9.9), Value(6)}), sortKey);
}
TEST_F(SortKeyGeneratorWorkingSetTest, CanGenerateSortKeyFromWSMInIndexKeyState) {
auto sortKeyGen = makeSortKeyGen(BSON("a" << 1), nullptr);
setRecordIdAndIdx(BSON("a" << 1 << "b" << 1), BSON("" << 2 << "" << 3));
auto sortKey = sortKeyGen->computeSortKey(member());
- ASSERT_OK(sortKey);
- ASSERT_VALUE_EQ(Value(2), sortKey.getValue());
+ ASSERT_VALUE_EQ(Value(2), sortKey);
}
TEST_F(SortKeyGeneratorWorkingSetTest, CanGenerateSortKeyFromWSMInIndexKeyStateWithCollator) {
@@ -305,8 +301,7 @@ TEST_F(SortKeyGeneratorWorkingSetTest, CanGenerateSortKeyFromWSMInIndexKeyStateW
<< ""
<< "string2"));
auto sortKey = sortKeyGen->computeSortKey(member());
- ASSERT_OK(sortKey);
- ASSERT_VALUE_EQ(Value("1gnirts"_sd), sortKey.getValue());
+ ASSERT_VALUE_EQ(Value("1gnirts"_sd), sortKey);
}
DEATH_TEST_F(SortKeyGeneratorWorkingSetTest,