diff options
author | Kyle Suarez <kyle.suarez@mongodb.com> | 2017-08-22 18:22:12 -0400 |
---|---|---|
committer | Kyle Suarez <kyle.suarez@mongodb.com> | 2017-08-22 18:22:12 -0400 |
commit | 1bba024b024acf6d578796b53b26f5ba6fafd2c6 (patch) | |
tree | 5cfecdf5c13009298576766a16012919c42091ad /src/mongo/db/matcher/SConscript | |
parent | 3ac3be976459d6499bda024fd17388877947d368 (diff) | |
download | mongo-1bba024b024acf6d578796b53b26f5ba6fafd2c6.tar.gz |
SERVER-29582 create a $_internalSchemaAllowedProperties match expression
Diffstat (limited to 'src/mongo/db/matcher/SConscript')
-rw-r--r-- | src/mongo/db/matcher/SConscript | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mongo/db/matcher/SConscript b/src/mongo/db/matcher/SConscript index 04c1cfa0b98..5b3fe0f24c8 100644 --- a/src/mongo/db/matcher/SConscript +++ b/src/mongo/db/matcher/SConscript @@ -50,6 +50,7 @@ env.Library( 'matcher.cpp', 'matcher_type_alias.cpp', 'schema/expression_internal_schema_all_elem_match_from_index.cpp', + 'schema/expression_internal_schema_allowed_properties.cpp', 'schema/expression_internal_schema_cond.cpp', 'schema/expression_internal_schema_fmod.cpp', 'schema/expression_internal_schema_match_array_index.cpp', @@ -89,6 +90,7 @@ env.CppUnitTest( 'expression_with_placeholder_test.cpp', 'path_accepting_keyword_test.cpp', 'schema/expression_internal_schema_all_elem_match_from_index_test.cpp', + 'schema/expression_internal_schema_allowed_properties_test.cpp', 'schema/expression_internal_schema_cond_test.cpp', 'schema/expression_internal_schema_fmod_test.cpp', 'schema/expression_internal_schema_match_array_index_test.cpp', |