diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2025-03-04 18:08:19 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2025-03-04 18:53:10 +0300 |
commit | 125a8ad6292e09dfd2fca510d308c63d52cef422 (patch) | |
tree | 47fa39ed9d2501f7a0ae995080a6d7700ba3b7ae /yql/essentials/udfs/common/python/bindings/py_resource.cpp | |
parent | 0ae3f82349eeb4f353c62dd726e4ba06bbc837f9 (diff) | |
download | ydb-125a8ad6292e09dfd2fca510d308c63d52cef422.tar.gz |
Intermediate changes
commit_hash:acdbcb5ab09c7f6e8d5bf8a01ff1954c04d7a80f
Diffstat (limited to 'yql/essentials/udfs/common/python/bindings/py_resource.cpp')
-rw-r--r-- | yql/essentials/udfs/common/python/bindings/py_resource.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/yql/essentials/udfs/common/python/bindings/py_resource.cpp b/yql/essentials/udfs/common/python/bindings/py_resource.cpp index ebb096029a..050eae0c8c 100644 --- a/yql/essentials/udfs/common/python/bindings/py_resource.cpp +++ b/yql/essentials/udfs/common/python/bindings/py_resource.cpp @@ -56,8 +56,8 @@ TPyObjectPtr ToPyResource( const NUdf::TType* type, const NUdf::TUnboxedValuePod& value) { -// TODO NILE-43 -#if false && UDF_ABI_COMPATIBILITY_VERSION_CURRENT >= UDF_ABI_COMPATIBILITY_VERSION(2, 15) + +#if UDF_ABI_COMPATIBILITY_VERSION_CURRENT >= UDF_ABI_COMPATIBILITY_VERSION(2, 15) NUdf::TResourceTypeInspector inpector(*ctx->PyCtx->TypeInfoHelper, type); auto tag = inpector.GetTag(); if (tag == ctx->PyCtx->ResourceTag) { @@ -80,8 +80,8 @@ NUdf::TUnboxedValue FromPyResource( const TPyCastContext::TPtr& ctx, const NUdf::TType* type, PyObject* value) { -// TODO NILE-43 -#if false && UDF_ABI_COMPATIBILITY_VERSION_CURRENT >= UDF_ABI_COMPATIBILITY_VERSION(2, 15) + +#if UDF_ABI_COMPATIBILITY_VERSION_CURRENT >= UDF_ABI_COMPATIBILITY_VERSION(2, 15) NUdf::TResourceTypeInspector inpector(*ctx->PyCtx->TypeInfoHelper, type); auto tag = inpector.GetTag(); if (tag == ctx->PyCtx->ResourceTag) { |