Skip to content

Commit

Permalink
Re-add dataframe consolidation to v2 API, fix gitmodules
Browse files Browse the repository at this point in the history
  • Loading branch information
willdealtry committed Dec 3, 2024
1 parent ff9b955 commit cc4f51b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@
[submodule "cpp/vcpkg"]
path = cpp/vcpkg
url = https://github.com/microsoft/vcpkg.git
[submodule "cpp/third_party/entt"]
path = cpp/third_party/entt
url = https://github.com/skypjack/entt.git
3 changes: 2 additions & 1 deletion python/arcticdb/version_store/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,7 @@ def __init__(self, arctic_instance_description: str, nvs: NativeVersionStore):
"""
self.arctic_instance_desc = arctic_instance_description
self._nvs = nvs
self._nvs._normalizer.df._skip_df_consolidation = True
self._dev_tools = DevTools(nvs)

def __repr__(self):
Expand Down Expand Up @@ -2374,4 +2375,4 @@ def defragment_symbol_data(
@property
def name(self):
"""The name of this library."""
return self._nvs.name()
return self._nvs.name()

0 comments on commit cc4f51b

Please sign in to comment.