diff options
author | Mathias Stearn <mathias@10gen.com> | 2015-03-25 12:25:04 -0400 |
---|---|---|
committer | Mathias Stearn <mathias@10gen.com> | 2015-04-09 11:35:56 -0400 |
commit | db59e0f31b12966f127bf39df5674e3239c57350 (patch) | |
tree | 70699492e09cb72c3d7a0654e74107e512a990ad /src/mongo/db/storage/SConscript | |
parent | 8b31673665dd2a9d38e4b65ea880fc49acc0bd81 (diff) | |
download | mongo-db59e0f31b12966f127bf39df5674e3239c57350.tar.gz |
SERVER-17635 Improve SortedDataInterface::Cursor API
Major changes:
* Implementation now responsible for simple end point checking.
* No way to ask for current position. Relocating methods now return position.
* Simplified seeking methods so they have clear uses.
* Callers can use saveUnpositioned to indicate they don't care about position.
Diffstat (limited to 'src/mongo/db/storage/SConscript')
-rw-r--r-- | src/mongo/db/storage/SConscript | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mongo/db/storage/SConscript b/src/mongo/db/storage/SConscript index cefbcf752f5..2627532afbd 100644 --- a/src/mongo/db/storage/SConscript +++ b/src/mongo/db/storage/SConscript @@ -42,7 +42,6 @@ env.Library( 'sorted_data_interface_test_cursor.cpp', 'sorted_data_interface_test_cursor_advanceto.cpp', 'sorted_data_interface_test_cursor_locate.cpp', - 'sorted_data_interface_test_cursor_position.cpp', 'sorted_data_interface_test_cursor_saverestore.cpp', 'sorted_data_interface_test_dupkeycheck.cpp', 'sorted_data_interface_test_fullvalidate.cpp', @@ -53,9 +52,11 @@ env.Library( 'sorted_data_interface_test_spaceused.cpp', 'sorted_data_interface_test_touch.cpp', 'sorted_data_interface_test_unindex.cpp', - ], - LIBDEPS=[] - ) + ], + LIBDEPS=[ + 'index_entry_comparison', + ], +) env.Library( target='record_store_test_harness', |