diff options
author | Mathias Stearn <mathias@10gen.com> | 2015-02-17 18:20:42 -0500 |
---|---|---|
committer | Mathias Stearn <mathias@10gen.com> | 2015-02-19 19:55:44 -0500 |
commit | ae18bbec33db1c4bf57d328505474eb7bba517df (patch) | |
tree | d40f788493b48acc2d65e1c002ce4adf41e0313f /src/mongo/db/storage/SConscript | |
parent | 30d9e17410a3dec85ca2a148c745a6b8f9a8ecd0 (diff) | |
download | mongo-ae18bbec33db1c4bf57d328505474eb7bba517df.tar.gz |
SERVER-17312 collmod command now handles parsing of all arguments
For the two currently supported engine-specific options, the collmod command
will handle parsing the arguments and tell the CollectionCatalogEntry to
update it's flags option.
This removes the ability of storage engines to have custom options that can
be changed after the collection is created. There were issues related to
argument validation and replication of changes (including for initial sync).
A correct solution will be designed as SERVER-17320.
Diffstat (limited to 'src/mongo/db/storage/SConscript')
-rw-r--r-- | src/mongo/db/storage/SConscript | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mongo/db/storage/SConscript b/src/mongo/db/storage/SConscript index aec1069cf09..650942070c5 100644 --- a/src/mongo/db/storage/SConscript +++ b/src/mongo/db/storage/SConscript @@ -60,7 +60,6 @@ env.Library( env.Library( target='record_store_test_harness', source=[ - 'record_store_test_customoption.cpp', 'record_store_test_datafor.cpp', 'record_store_test_datasize.cpp', 'record_store_test_deleterecord.cpp', |