summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/text_match.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-54322 Text query plans are not shown properly in SBE explainAnton Korshunov2021-03-131-3/+6
|
* SERVER-43821 Make PlanStage and PlanExecutor return errors by throwingDavid Storch2020-05-291-10/+0
| | | | | | | | This eliminates the need for the FAILURE status codes in PlanStage and PlanExecutor, and brings query execution's error reporting more in line with that of the rest of the server. It also makes it easier for future implementations of PlanExecutor to comply with the interface.
* SERVER-45406 Plumb ExpressionContext through PlanStageIan Boros2020-02-281-2/+2
| | | | This patch includes also moves ownership of the collator to the ExpressionContext.
* SERVER-42181 Make WorkingSetMember hold Document instead of BSONObjMartin Neupauer2019-08-291-1/+1
| | | | SERVER-42157 Unowned mode for Document/Value
* SERVER-39339 Remove `stdx/memory.h`ADAM David Alan Martin2019-06-101-4/+4
|
* SERVER-40476 remove mongoutils::strBilly Donahue2019-04-091-1/+1
| | | | | | Rename utils/mongoutils/str.h => utils/str.h Rename namespace mongoutils::str => str Rename mongo::strcasecmp => str::caseInsensitiveCompare.
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-8/+10
|
* SERVER-23971 Clang-Format codeMark Benvenuto2016-05-281-1/+1
|
* SERVER-19377 PlanStage: make work() non-virt, add virt method doWork()Jason Rassi2016-01-141-21/+1
| | | | | Changes PlanStage::work() to be non-virtual. PlanStage::work() now updates _commonStats and calls new pure virtual method doWork().
* SERVER-19510 Rename FTSQuery to FTSQueryImplJason Rassi2015-11-181-1/+1
| | | | Groundwork for upcoming change to introduce a "no-op" text query.
* SERVER-20111 Plan summary should only include the winning planCharlie Swanson2015-10-081-1/+1
|
* SERVER-19364 move query stage OperationContext pointer management into the ↵Qingyang Chen2015-08-041-2/+3
| | | | base class
* SERVER-17364 Unify handling of child stages into PlanStage base classMathias Stearn2015-07-161-30/+6
| | | | This is prep for adding more methods that need to propagate to children.
* SERVER-19109 Refactor text stage into matcher and scorer stageAdam Chelminski2015-07-091-0/+154
Signed-off-by: Mark Benvenuto <mark.benvenuto@mongodb.com>