summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/SConscript
diff options
context:
space:
mode:
authorJason Rassi <rassi@10gen.com>2015-01-09 11:23:15 -0500
committerJason Rassi <rassi@10gen.com>2015-01-12 12:40:45 -0500
commit2468153c690dbe8312a10829d3cd7565ed90c1e1 (patch)
tree5f4bd3d5326face3d7f6a30b48dae5fbcd0253e2 /src/mongo/db/exec/SConscript
parentae7a1a999b9352948cb49dfaf80a4ad3c7eabd5d (diff)
downloadmongo-2468153c690dbe8312a10829d3cd7565ed90c1e1.tar.gz
SERVER-16659 Rename MockStage to QueuedDataStage
It is no longer the case that this stage is only used for testing.
Diffstat (limited to 'src/mongo/db/exec/SConscript')
-rw-r--r--src/mongo/db/exec/SConscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/exec/SConscript b/src/mongo/db/exec/SConscript
index ed4aefd510f..37e91bd8476 100644
--- a/src/mongo/db/exec/SConscript
+++ b/src/mongo/db/exec/SConscript
@@ -52,7 +52,6 @@ env.Library(
"keep_mutations.cpp",
"limit.cpp",
"merge_sort.cpp",
- "mock_stage.cpp",
"multi_iterator.cpp",
"multi_plan.cpp",
"near.cpp",
@@ -61,6 +60,7 @@ env.Library(
"pipeline_proxy.cpp",
"projection.cpp",
"projection_exec.cpp",
+ "queued_data_stage.cpp",
"shard_filter.cpp",
"skip.cpp",
"sort.cpp",
@@ -77,9 +77,9 @@ env.Library(
)
env.CppUnitTest(
- target = "mock_stage_test",
+ target = "queued_data_stage_test",
source = [
- "mock_stage_test.cpp",
+ "queued_data_stage_test.cpp",
],
LIBDEPS = [
"exec",