diff options
author | Eric Cox <eric.cox@mongodb.com> | 2021-07-21 19:03:16 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-07-31 01:41:48 +0000 |
commit | 07d6e82a05dbe36f94d6a32b9378b0ddabdc8045 (patch) | |
tree | 8d9666532e2a1f37805c81a87b758c21fe4d3c57 /src/mongo/db/query/query_solution.cpp | |
parent | 63e3eaa766bf2aea4fad1333e69d7c8d52e612e8 (diff) | |
download | mongo-07d6e82a05dbe36f94d6a32b9378b0ddabdc8045.tar.gz |
SERVER-57461 Remove SPLIT_LIMITED_SORT and associated QueryPlanner code
Diffstat (limited to 'src/mongo/db/query/query_solution.cpp')
-rw-r--r-- | src/mongo/db/query/query_solution.cpp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/mongo/db/query/query_solution.cpp b/src/mongo/db/query/query_solution.cpp index 28663f40e1c..d7561bb9675 100644 --- a/src/mongo/db/query/query_solution.cpp +++ b/src/mongo/db/query/query_solution.cpp @@ -1296,30 +1296,6 @@ QuerySolutionNode* CountScanNode::clone() const { } // -// EnsureSortedNode -// - -void EnsureSortedNode::appendToString(str::stream* ss, int indent) const { - addIndent(ss, indent); - *ss << "ENSURE_SORTED\n"; - addIndent(ss, indent + 1); - *ss << "pattern = " << pattern.toString() << '\n'; - addCommon(ss, indent); - addIndent(ss, indent + 1); - *ss << "Child:" << '\n'; - children[0]->appendToString(ss, indent + 2); -} - -QuerySolutionNode* EnsureSortedNode::clone() const { - EnsureSortedNode* copy = new EnsureSortedNode(); - cloneBaseData(copy); - - copy->pattern = this->pattern; - - return copy; -} - -// // EofNode // |