diff options
author | vvvv <vvvv@yandex-team.com> | 2025-03-04 21:15:21 +0300 |
---|---|---|
committer | vvvv <vvvv@yandex-team.com> | 2025-03-04 22:19:40 +0300 |
commit | a661f83d811c960a016237687e7a1b9f9519d612 (patch) | |
tree | 49b4a660c89b910dfc25365a91d42c7d1f64939d /build/scripts/gen_yql_python_udf.py | |
parent | 686e0c328214946e79e6aaa7426932fdfee90294 (diff) | |
download | ydb-a661f83d811c960a016237687e7a1b9f9519d612.tar.gz |
renamed macro
commit_hash:f17e3cd8acf40b29c6c32c1daacfac1c904126d7
Diffstat (limited to 'build/scripts/gen_yql_python_udf.py')
-rw-r--r-- | build/scripts/gen_yql_python_udf.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/scripts/gen_yql_python_udf.py b/build/scripts/gen_yql_python_udf.py index ad0d693240..0188308c38 100644 --- a/build/scripts/gen_yql_python_udf.py +++ b/build/scripts/gen_yql_python_udf.py @@ -17,18 +17,18 @@ using namespace NKikimr::NUdf; LIBRA_MODULE(TLibraModule, "Libra@MODULE_NAME@"); #endif -extern "C" UDF_API void Register(IRegistrator& registrator, ui32 flags) { +extern "C" YQL_UDF_API void Register(IRegistrator& registrator, ui32 flags) { RegisterYqlPythonUdf(registrator, flags, TStringBuf("@MODULE_NAME@"), TStringBuf("@PACKAGE_NAME@"), EPythonFlavor::@FLAVOR@); #if @WITH_LIBRA@ RegisterHelper<TLibraModule>(registrator); #endif } -extern "C" UDF_API ui32 AbiVersion() { +extern "C" YQL_UDF_API ui32 AbiVersion() { return CurrentAbiVersion(); } -extern "C" UDF_API void SetBackTraceCallback(TBackTraceCallback callback) { +extern "C" YQL_UDF_API void SetBackTraceCallback(TBackTraceCallback callback) { SetBackTraceCallbackImpl(callback); } |