diff --git a/python/arcticdb/version_store/_store.py b/python/arcticdb/version_store/_store.py index 68768994cba..6ae3cd9ee54 100644 --- a/python/arcticdb/version_store/_store.py +++ b/python/arcticdb/version_store/_store.py @@ -1144,6 +1144,12 @@ def update( }, kwargs, ) + if "dynamic_schema" in kwargs: + log.warning( + "update() received 'dynamic_schema' parameter which overrides the library setting " + "and may cause data corruption. Please remove it from the call site. " + "Support for this parameter override is scheduled to be removed in June 2026." + ) update_query = _PythonVersionStoreUpdateQuery() dynamic_strings = self._resolve_dynamic_strings(kwargs)