Skip to content

Commit 2f3d99f

Browse files
committed
WIP Cleanup backend to prepare for review
1 parent 78a561b commit 2f3d99f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,3 @@
1919
[submodule "cpp/third_party/entt"]
2020
path = cpp/third_party/entt
2121
url = https://github.com/skypjack/entt.git
22-
[submodule "cpp/third_party/date"]
23-
path = cpp/third_party/date
24-
url = https://github.com/HowardHinnant/date.git

cpp/arcticdb/version/python_bindings.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -812,6 +812,9 @@ void register_bindings(py::module &version, py::exception<arcticdb::ArcticExcept
812812
.def("batch_append",
813813
&PythonVersionStore::batch_append,
814814
py::call_guard<SingleThreadMutexHolder>(), "Batch append to a list of symbols")
815+
.def("batch_update",
816+
&PythonVersionStore::batch_update,
817+
py::call_guard<SingleThreadMutexHolder>(), "Batch update a list of symbols")
815818
.def("batch_restore_version",
816819
[&](PythonVersionStore& v, const std::vector<StreamId>& ids, const std::vector<VersionQuery>& version_queries, const ReadOptions& read_options){
817820
auto results = v.batch_restore_version(ids, version_queries);

0 commit comments

Comments
 (0)