udf_service.cpp 953 B

12345678910111213
  1. #include <util/system/yassert.h>
  2. #include <yql/essentials/public/udf/udf_value.h>
  3. extern "C" void* UdfAllocate(ui64) { Y_ABORT("Called UdfAllocate"); }
  4. extern "C" void UdfFree(const void*) { Y_ABORT("Called UdfFree"); }
  5. extern "C" void UdfTerminate(const char*) { Y_ABORT("Called UdfTerminate."); }
  6. extern "C" void UdfRegisterObject(::NYql::NUdf::TBoxedValue*) { Y_ABORT("Called UdfRegisterObject"); }
  7. extern "C" void UdfUnregisterObject(::NYql::NUdf::TBoxedValue*) { Y_ABORT("Called UdfUnregisterObject"); }
  8. extern "C" void* UdfAllocateWithSize(ui64) { Y_ABORT("Called UdfAllocateWithSize"); }
  9. extern "C" void UdfFreeWithSize(const void*, ui64) { Y_ABORT("Called UdfFreeWithSize"); }
  10. extern "C" void* UdfArrowAllocate(ui64) { Y_ABORT("Called UdfArrowAllocate"); }
  11. extern "C" void* UdfArrowReallocate(const void*, ui64, ui64) { Y_ABORT("Called UdfArrowReallocate"); }
  12. extern "C" void UdfArrowFree(const void*, ui64) { Y_ABORT("Called UdfArrowFree"); }