summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/text_match.h
diff options
context:
space:
mode:
authorJason Rassi <rassi@10gen.com>2015-11-18 17:25:21 -0500
committerJason Rassi <rassi@10gen.com>2015-11-18 17:36:11 -0500
commit7bac6c8f64019082f205c7606c65f173972960a3 (patch)
treeadb98230f227ebb22fbde6a1f5d94a7e634ba78c /src/mongo/db/exec/text_match.h
parente261ce9d033acc2e7f87c94dca882c8e897f9b10 (diff)
downloadmongo-7bac6c8f64019082f205c7606c65f173972960a3.tar.gz
SERVER-19510 Rename FTSQuery to FTSQueryImpl
Groundwork for upcoming change to introduce a "no-op" text query.
Diffstat (limited to 'src/mongo/db/exec/text_match.h')
-rw-r--r--src/mongo/db/exec/text_match.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/exec/text_match.h b/src/mongo/db/exec/text_match.h
index 7b707efda5b..be1e6a2dd79 100644
--- a/src/mongo/db/exec/text_match.h
+++ b/src/mongo/db/exec/text_match.h
@@ -33,7 +33,7 @@
#include "mongo/db/exec/plan_stage.h"
#include "mongo/db/exec/working_set.h"
#include "mongo/db/fts/fts_matcher.h"
-#include "mongo/db/fts/fts_query.h"
+#include "mongo/db/fts/fts_query_impl.h"
#include "mongo/db/fts/fts_spec.h"
namespace mongo {
@@ -41,7 +41,7 @@ namespace mongo {
using std::unique_ptr;
using fts::FTSMatcher;
-using fts::FTSQuery;
+using fts::FTSQueryImpl;
using fts::FTSSpec;
@@ -59,7 +59,7 @@ class TextMatchStage final : public PlanStage {
public:
TextMatchStage(OperationContext* opCtx,
unique_ptr<PlanStage> child,
- const FTSQuery& query,
+ const FTSQueryImpl& query,
const FTSSpec& spec,
WorkingSet* ws);
~TextMatchStage();