summaryrefslogtreecommitdiff
path: root/src/mongo/db/matcher/expression_text.h
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-48228 Move slot-based execution engine and supporting changes into ↵Martin Neupauer2020-06-111-0/+8
| | | | | | | | | | | | | | the master branch This is an initial commit for the slot-based execution engine (SBE) which contains: * Implementation of the core slot-based engine. * The SBE stage builder, which is responsible for translating a QuerySolution tree into an SBE plan. * Other changes necessary for integration with the find command. Co-authored-by: Anton Korshunov <anton.korshunov@mongodb.com> Co-authored-by: Justin Seyster <justin.seyster@mongodb.com> Co-authored-by: David Storch <david.storch@mongodb.com>
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-3/+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-30783 Move init() logic to MatchExpression constructorsBlake Oler2017-11-141-1/+2
|
* SERVER-29840 Add allowed features bitmask to MatchExpressionParser::parseTess Avitabile2017-08-251-0/+15
|
* SERVER-27938 Rename all OperationContext variables to opCtxMaria van Keulen2017-03-071-1/+1
| | | | | | This commit is an automated rename of all whole word instances of txn, _txn, and txnPtr to opCtx, _opCtx, and opCtxPtr, respectively in all .cpp and .h files in src/mongo.
* SERVER-19510 Move text query parsing to TextMatchExpression::init()Jason Rassi2015-11-181-2/+12
| | | | | | | | | | | | | | - Introduces FTSQuery, which is now the base class for FTSQueryImpl. - Introduces a derived class FTSQueryNoop (which TextNoOpMatchExpression now wraps). libfts_query_noop is now linked into db/matcher/expressions. - TextMatchExpression now parses the text query (which acquires a collection lock as part of the parsing process), and TextNode now stores a parsed version of the query. The FTSQuery::parse() call in buildStages() is removed. Behavior change: $text against a non-existent collection now returns an error, instead of an empty result set.
* SERVER-19510 Refactor $text match expression parsingJason Rassi2015-11-121-38/+5
| | | | | | | - Text parsing no longer uses dedicated callback handle; responsibility moved to ExtensionsCallback. - Introduces TextMatchExpressionBase (new base class for existing class TextMatchExpression and new class TextNoOpMatchExpression).
* SERVER-19557 Add text index v3Adam Chelminski2015-08-111-1/+8
|
* SERVER-16889 MatchExpression::shallowClone() return unique_ptr<ME>Qingyang Chen2015-06-261-1/+1
|
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-19/+26
|
* SERVER-17437 $caseSensitive option for $text query operatorJason Rassi2015-03-121-1/+3
|
* SERVER-14096 explain find() at queryPlanner verbosityDavid Storch2014-06-111-0/+2
| | | | Enable by the setParameter 'enableNewExplain'
* SERVER-13256: Remove pch - qualify std in headersMark Benvenuto2014-05-191-2/+2
|
* SERVER-10026 evaluating matcher of idx-only expression returns true instead ↵Hari Khalsa2013-11-061-1/+0
| | | | of freaking out
* SERVER-9063 Add new match expression TextMatchExpressionJason Rassi2013-10-111-0/+62