When the v2 was introduced I wrapped them with the v2 in the signature. Example: getMemberByNameV2()
This is a bit ugly so I am now deprecating the versions with the v2 in the signature in favor of the old signatures. The methods with the old signatures are now using the v2 c_apis
tiledb_array_delete_fragments() is a different case. It is now deprecated and replaced by a static method.
This PR removed the dependency to deprecated methods completely without introducing any breaking changes. Let me know if you want to also remove the deprecated methods completely.
These methods have a
v2
equivalent in the c api.When the v2 was introduced I wrapped them with the v2 in the signature. Example:
getMemberByNameV2()
This is a bit ugly so I am now deprecating the versions with the v2 in the signature in favor of the old signatures. The methods with the old signatures are now using the v2 c_apis
tiledb_array_delete_fragments()
is a different case. It is now deprecated and replaced by a static method.This PR removed the dependency to deprecated methods completely without introducing any breaking changes. Let me know if you want to also remove the deprecated methods completely.
[sc-45973]