summaryrefslogtreecommitdiff
path: root/src/mongo/db/fts/fts_language.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-50917 util/ctype.h to replace <cctype> & <ctype.h> funcsBilly Donahue2020-10-131-3/+3
|
* SERVER-43128 include cctype for tolowerBilly Donahue2019-09-241-0/+1
|
* SERVER-43128 Simplify FTS language registryBilly Donahue2019-09-241-232/+119
|
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-7/+7
|
* SERVER-39339 Remove `stdx/memory.h`ADAM David Alan Martin2019-06-101-3/+3
|
* SERVER-40476 merge contents of utils/stringutils into utils/str.Billy Donahue2019-04-111-1/+0
|
* SERVER-40476 remove mongoutils::strBilly Donahue2019-04-091-4/+3
| | | | | | 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-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-23971 Clang-Format codeMark Benvenuto2016-05-281-4/+5
|
* SERVER-19557 Add text index v3Adam Chelminski2015-08-111-90/+142
|
* SERVER-19421 Add abstractions for phrase matching in FTSAdam Chelminski2015-07-291-0/+5
|
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-200/+195
|
* SERVER-17621: RLP English Testability hooksMark Benvenuto2015-04-161-7/+5
|
* SERVER-17520: Add support for pluggable FTS tokenizersMark Benvenuto2015-04-011-0/+6
|
* Revert "FTS Tokenizer"Geert Bosch2015-03-301-6/+0
| | | | This reverts commit 0bed4262dac849788e6571dc404d5d261b9e1c8c.
* FTS TokenizerMark Benvenuto2015-03-301-0/+6
|
* SERVER-16940 Change pass-by-const-ref of StringData to pass-by-valueTyler Brock2015-02-061-4/+4
|
* SERVER-10906 Add support for legacy text indexesJason Rassi2014-01-281-88/+198
| | | | | FTSSpec now handles text indexes with index option {textIndexVersion:1}.
* SERVER-9932 SERVER-10857 Text search language aliases/validationJason Rassi2013-11-131-0/+152
Users can now use two-letter language codes and can specify languages in mixed case. The following operations will now fail if they do not pass language validation: - Building a text index (if default_language fails validation or if the target collection contains a document with a language that fails validation). - Inserting a document into a text-indexed collection (if it specifies a language that fails validation). - A text query or text command (if it specifies a language that fails validation).