diff options
| author | vvvv <[email protected]> | 2025-10-08 11:41:14 +0300 |
|---|---|---|
| committer | vvvv <[email protected]> | 2025-10-08 12:20:42 +0300 |
| commit | d73f13cfdb331365ddad0da51ec36e0a3e4cf187 (patch) | |
| tree | 88cab10170ce9aa3389be7f1a09247386dcf5ebd /yql/essentials/public/udf/service/stub/udf_service.cpp | |
| parent | f377d8ad9e0741cd904c1d4934afdf24af517d93 (diff) | |
YQL-20086 public
commit_hash:68b0c2e9c2960587af7d57ecedcb38f4d05890b7
Diffstat (limited to 'yql/essentials/public/udf/service/stub/udf_service.cpp')
| -rw-r--r-- | yql/essentials/public/udf/service/stub/udf_service.cpp | 40 |
1 files changed, 30 insertions, 10 deletions
diff --git a/yql/essentials/public/udf/service/stub/udf_service.cpp b/yql/essentials/public/udf/service/stub/udf_service.cpp index 1cfb5fbe9ff..848119194b1 100644 --- a/yql/essentials/public/udf/service/stub/udf_service.cpp +++ b/yql/essentials/public/udf/service/stub/udf_service.cpp @@ -1,13 +1,33 @@ #include <util/system/yassert.h> #include <yql/essentials/public/udf/udf_value.h> -extern "C" void* UdfAllocate(ui64) { Y_ABORT("Called UdfAllocate"); } -extern "C" void UdfFree(const void*) { Y_ABORT("Called UdfFree"); } -extern "C" void UdfTerminate(const char*) { Y_ABORT("Called UdfTerminate."); } -extern "C" void UdfRegisterObject(::NYql::NUdf::TBoxedValue*) { Y_ABORT("Called UdfRegisterObject"); } -extern "C" void UdfUnregisterObject(::NYql::NUdf::TBoxedValue*) { Y_ABORT("Called UdfUnregisterObject"); } -extern "C" void* UdfAllocateWithSize(ui64) { Y_ABORT("Called UdfAllocateWithSize"); } -extern "C" void UdfFreeWithSize(const void*, ui64) { Y_ABORT("Called UdfFreeWithSize"); } -extern "C" void* UdfArrowAllocate(ui64) { Y_ABORT("Called UdfArrowAllocate"); } -extern "C" void* UdfArrowReallocate(const void*, ui64, ui64) { Y_ABORT("Called UdfArrowReallocate"); } -extern "C" void UdfArrowFree(const void*, ui64) { Y_ABORT("Called UdfArrowFree"); } +extern "C" void* UdfAllocate(ui64) { + Y_ABORT("Called UdfAllocate"); +} +extern "C" void UdfFree(const void*) { + Y_ABORT("Called UdfFree"); +} +extern "C" void UdfTerminate(const char*) { + Y_ABORT("Called UdfTerminate."); +} +extern "C" void UdfRegisterObject(::NYql::NUdf::TBoxedValue*) { + Y_ABORT("Called UdfRegisterObject"); +} +extern "C" void UdfUnregisterObject(::NYql::NUdf::TBoxedValue*) { + Y_ABORT("Called UdfUnregisterObject"); +} +extern "C" void* UdfAllocateWithSize(ui64) { + Y_ABORT("Called UdfAllocateWithSize"); +} +extern "C" void UdfFreeWithSize(const void*, ui64) { + Y_ABORT("Called UdfFreeWithSize"); +} +extern "C" void* UdfArrowAllocate(ui64) { + Y_ABORT("Called UdfArrowAllocate"); +} +extern "C" void* UdfArrowReallocate(const void*, ui64, ui64) { + Y_ABORT("Called UdfArrowReallocate"); +} +extern "C" void UdfArrowFree(const void*, ui64) { + Y_ABORT("Called UdfArrowFree"); +} |
