aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorudovichenko-r <udovichenko-r@yandex-team.ru>2022-07-04 16:19:16 +0300
committerudovichenko-r <udovichenko-r@yandex-team.ru>2022-07-04 16:19:16 +0300
commit25f54d9216201e9ff973229d275d26046fe4a6eb (patch)
tree8f40b2254fe34cfaebc3b60ca18502524dc1bb6a
parent782021b26cb7422021491d7de9b4e74ca23e7c3b (diff)
downloadydb-25f54d9216201e9ff973229d275d26046fe4a6eb.tar.gz
[KIKIMR-15108] Include into build udf-related projects
ref:421ca3747b4096d49ec4e1b31c6dc18b92998c99
-rw-r--r--CMakeLists.darwin.txt1
-rw-r--r--CMakeLists.linux.txt1
-rw-r--r--ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.txt22
-rw-r--r--ydb/library/yql/public/udf/tz/update.py2
4 files changed, 25 insertions, 1 deletions
diff --git a/CMakeLists.darwin.txt b/CMakeLists.darwin.txt
index 7222175a24..c7692661bb 100644
--- a/CMakeLists.darwin.txt
+++ b/CMakeLists.darwin.txt
@@ -1199,6 +1199,7 @@ add_subdirectory(ydb/library/yql/core/file_storage/http_download)
add_subdirectory(ydb/library/yql/core/file_storage/http_download/proto)
add_subdirectory(ydb/library/yql/core/issue/ut)
add_subdirectory(ydb/library/yql/minikql/ut)
+add_subdirectory(ydb/library/yql/public/udf/service/terminate_policy)
add_subdirectory(ydb/library/yql/utils/ut)
add_subdirectory(ydb/library/yql/utils/threading)
add_subdirectory(ydb/library/yql/utils/actors/ut)
diff --git a/CMakeLists.linux.txt b/CMakeLists.linux.txt
index 5c1961f5c3..cd1d388f9f 100644
--- a/CMakeLists.linux.txt
+++ b/CMakeLists.linux.txt
@@ -1297,6 +1297,7 @@ add_subdirectory(ydb/library/yql/core/file_storage/http_download)
add_subdirectory(ydb/library/yql/core/file_storage/http_download/proto)
add_subdirectory(ydb/library/yql/core/issue/ut)
add_subdirectory(ydb/library/yql/minikql/ut)
+add_subdirectory(ydb/library/yql/public/udf/service/terminate_policy)
add_subdirectory(ydb/library/yql/utils/ut)
add_subdirectory(ydb/library/yql/utils/threading)
add_subdirectory(ydb/library/yql/utils/actors/ut)
diff --git a/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.txt b/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.txt
new file mode 100644
index 0000000000..0d3561b8f5
--- /dev/null
+++ b/ydb/library/yql/public/udf/service/terminate_policy/CMakeLists.txt
@@ -0,0 +1,22 @@
+
+# This file was gererated by the build system used internally in the Yandex monorepo.
+# Only simple modifications are allowed (adding source-files to targets, adding simple properties
+# like target_include_directories). These modifications will be ported to original
+# ya.make files by maintainers. Any complex modifications which can't be ported back to the
+# original buildsystem will not be accepted.
+
+
+
+add_library(udf-service-terminate_policy)
+target_compile_options(udf-service-terminate_policy PRIVATE
+ -DUSE_CURRENT_UDF_ABI_VERSION
+)
+target_link_libraries(udf-service-terminate_policy PUBLIC
+ contrib-libs-cxxsupp
+ yutil
+ library-yql-minikql
+ yql-public-udf
+)
+target_sources(udf-service-terminate_policy PRIVATE
+ ${CMAKE_SOURCE_DIR}/ydb/library/yql/public/udf/service/terminate_policy/udf_service.cpp
+)
diff --git a/ydb/library/yql/public/udf/tz/update.py b/ydb/library/yql/public/udf/tz/update.py
index 0d9814841f..3255d6dd9c 100644
--- a/ydb/library/yql/public/udf/tz/update.py
+++ b/ydb/library/yql/public/udf/tz/update.py
@@ -2,7 +2,7 @@ import re
def main():
- REGEXP = "^(\"(.+)\",|\"\",\/\/(.+))$"
+ REGEXP = """^("(.+)",|"",//(.+))$"""
OUTPUT = "../udf_tz.gen"
INPUT = OUTPUT
CONTRIB_ZONES = "../../../../../../../contrib/libs/cctz/tzdata/ya.make.resources"