summaryrefslogtreecommitdiffstats
path: root/yql/essentials/udfs/common/python
Commit message (Collapse)AuthorAgeFilesLines
* Intermediate changesrobot-piglet2026-06-051-4/+23
| | | | commit_hash:cc9d19171eb062c10e4bd4f29c236ae2578b886a
* YQL-20095: Enable readability-static-definition-in-anonymous-namespacevitya-smirnov2026-05-152-4/+4
| | | | commit_hash:f7485dac5115e73f75a5edccb3c65c0b657dd8e5
* YQL-20095: Enable readability-uppercase-literal-suffixvitya-smirnov2026-05-072-15/+15
| | | | commit_hash:41791bb9a63f1993010fb68562e9a5607927307d
* YQL-19813: Udf implementationatarasov52026-05-071-1/+3
| | | | commit_hash:183e3a952a021c4701c20d6677800f245239d822
* YQL-20095: Enable readability-isolate-declarationvitya-smirnov2026-04-136-16/+43
| | | | commit_hash:c180c2db4897962cb70063ffdc2ddcd21e5e3418
* Replace unreachable with *_ENSURE(false, ...)atarasov52026-04-011-3/+4
| | | | commit_hash:7c1445375e838a9327006528cb455c9899e9b32d
* Intermediate changesrobot-piglet2026-03-314-0/+36
| | | | commit_hash:3f0111b7873ff1a897b8cd8dbf478f3f906dc6a6
* YQL-20095: Enable readability-avoid-const-params-in-declsvitya-smirnov2026-03-311-1/+1
| | | | | https://clang.llvm.org/extra/clang-tidy/checks/readability/avoid-const-params-in-decls.html commit_hash:17e1ec5c3849a38bcb76cd4927e66979bee6c2ec
* YQL-20095: Enable modernize-use-designated-initializersvitya-smirnov2026-03-171-2/+2
| | | | | https://clang.llvm.org/extra/clang-tidy/checks/modernize/use-designated-initializers.html commit_hash:d73eb463c7bec2bda4c362aab10af49979a7ddd3
* YQL-20095: Enable modernize-raw-string-literalvitya-smirnov2026-03-061-1/+1
| | | | | https://clang.llvm.org/extra/clang-tidy/checks/modernize/raw-string-literal.html commit_hash:80a511a46b35539fa1f834d4fb5de452ccfbe0ac
* YQL-20339 python/js runtime linear checkervvvv2026-03-048-9/+55
| | | | commit_hash:362a2d7f5bad4151c0890ab29f0804471bd1bab4
* YQL-20095: Enable modernize-pass-by-valuevitya-smirnov2026-03-026-23/+35
| | | | commit_hash:4939dfad654f18bb31e40711ee0c39063889f17b
* YQL-20095: Enable modernize-avoid-c-arraysvitya-smirnov2026-02-198-5/+11
| | | | commit_hash:da491ee93c4f4d3c885c7908a22b4d5d66c80388
* YQL-20095: Enable modernize-concat-nested-namespacesvitya-smirnov2026-02-171-4/+2
| | | | commit_hash:2c0e0389bf5eca0c8334d55143674a8acf94a88d
* Refactor time validation in various placesaneporada2026-02-101-121/+58
| | | | commit_hash:cb1ca76810602921536a9b184f4386955778a3dc
* YQL-20095: Enable misc-use-anonymous-namespacevitya-smirnov2026-02-055-8/+32
| | | | | - https://clang.llvm.org/extra/clang-tidy/checks/misc/use-anonymous-namespace.html commit_hash:746be9b9db256111b2fb6ab4d89844746deebcda
* YQL-20095: Enable some hicpp checksvitya-smirnov2026-01-302-7/+14
| | | | | | - https://clang.llvm.org/extra/clang-tidy/checks/hicpp/exception-baseclass.html - https://clang.llvm.org/extra/clang-tidy/checks/hicpp/multiway-paths-covered.html commit_hash:d1e41cca7d2fd5612d559cf1f3c9f8253e8eaf0e
* Intermediate changesrobot-piglet2026-01-272-7/+7
| | | | commit_hash:33094544f4203ec8211625ecb133f7031a52e959
* YQL-20095: Enable google-explicit-constructorvitya-smirnov2026-01-235-4/+6
| | | | commit_hash:4d77ad10fd4db303459ec4e45e139967c7fc8196
* YQL-20095: Enable modernize-use-overridevitya-smirnov2026-01-139-16/+15
| | | | | | | | | | | | | | | | | | | The check `modernize-use-override` is useful as it: 1. Removes redundant `override` when it is used with a `final`. 2. Removes redundant `virtual` or replace it with a `override`. So it is more clean for a reader, that overriding happens. It is enabled not out of order, as it is just an alias to `cppcoreguidelines-explicit-virtual-functions`. I also decided to switch a strategy of enabling checks. Now I will enable only a single rule with a single PR and prefer rules with a non-breaking autofix. In the new year with new linter checks! 🎄 commit_hash:e6e233baa90b31e5f65e11837546690c47f71ab5
* Intermediate changesrobot-piglet2025-12-112-2/+137
| | | | commit_hash:fe3a1944fdd047a69b90fdbb53393cecbbcf3175
* YQL-20086: Enable arcadia and bugprone checksvitya-smirnov2025-11-251-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch enables more Clang Tidy checks for the `yql/essentials` project. I chosen the policy to enable all checks by default because - It will keep us updated when new checks are become available in the DevTools whitelist. - You never know what check will be useful, even if it was not fired now. Why some checks from the https://nda.ya.ru/t/8QnKCVIO7NWhBD were disabled? - `arcadia-taxi-` checks are `userver`-specific. - `bugprone-bool-pointer-implicit-conversion` is not applicable to our codebase as we heavily used to it. - `bugprone-branch-clone` triggered on a code that is not obviously rewrittable and not so poor. - `bugprone-dynamic-static-initializers` are heavily used in our codebase especially in the translator. Static variables with dynamic initialization are so common, so refactor them is too hard and requires huge code rewritting to deliver some hardcoded configuration values via ctors, having them in a one place. - `bugprone-exception-escape` is useful check for programs where the care of exception safety is taken, but we a lot of places where exception can be thrown from the destructor or move-operator. I left a TODO in the `.clang-tidy` to fix this. Maybe will create a ticket. - `bugprone-lambda-function-name` appears when we throw an exception from the lambda. I think, that this is okay and do not see any options to fix it. - `bugprone-macro-parentheses` had false positives at `YQL_ENSURE` second argument and also broke some code, by surrounding `A` at `template <class A>`. - `bugprone-misplaced-widening-cast`, `bugprone-narrowing-conversions`, `bugprone-signed-char-misuse` are disabled because checking arithmetics correctness is hard and non-trivial. I am not sure that it worth spending a lot of time on it as everything seems to work well :o) - `bugprone-reserved-identifier` was triggered on some harmless identifier in computation, so I decided just to turn this off, rather than argue with someone. - `bugprone-suspicious-enum-usage` happend on Arcadia HTTP client usage. Do not think that it is worth to argue with Arcadia HTTP client code owners. - `bugprone-suspicious-memory-comparison` happened in some compuration test. I just decided to trust low-level code authors. - `bugprone-too-small-loop-variable` seems not really a problem and lets you safe some symbols on `static_cast`s. - `bugprone-sizeof-expression` had so many false positives at computation. - `bugprone-unchecked-optional-access` a good check, but optionals are dereferenced everywhere in our codebase. Of course, in a perfect world near each of such dereference should be an assertion with comment why it is a valid action, because when static analysis can not infer that the value is non-null, then it is not an obvious thing for a human also. But we a too far from such code quality now. - `bugprone-undefined-memory-manipulation` is interesting. It argued on some `memcpy` at computation. There was some `UnboxedValues` array and this objects have some logic of memory marking and releasing under an `NDEBUG`. I added a TODO to check this. Maybe will create a ticket. - `bugprone-unhandled-self-assignment` has false positives on non-owning objects such as iterators. commit_hash:c0c0de6b157bf095eb681bdea55ada47845de814
* YQL-20086: Add yql/essentials Clang Tidy configvitya-smirnov2025-11-214-11/+12
| | | | | | | | | This patch introduces an extension configuration for the Clang Tidy. It is merged with Arcadia Clang Tidy configuration. To begin with, more checks for identifiers naming are added. Documentation: https://nda.ya.ru/t/AhbDZbiF7MKe3M. commit_hash:3481da4c8df0a4d23a991d4a660ae050d2dc5d33
* YQL-20339 composite types in grammarvvvv2025-10-176-18/+14
| | | | commit_hash:2fc2878449f90c948e0cd75a3c1d59f07d660620
* YQL-20086 invert flagvvvv2025-10-104-8/+0
| | | | commit_hash:a6b640bc576263b62884a0b4187ba79c893e13d9
* YQL-20339 Python UDF supportvvvv2025-10-1022-2/+484
| | | | | init commit_hash:2a30a1b920f341e1f9250df382dd951604a0894f
* Intermediate changesrobot-piglet2025-10-066-12/+36
| | | | commit_hash:618c69f7a3090bbeb975dea6d222c8bc7f41314d
* YQL-20086 udfsvvvv2025-10-0662-5365/+5363
| | | | | init commit_hash:f9684778bf1ea956965f2360b80b91edb7d4ffbe
* Intermediate changesrobot-piglet2025-10-025-0/+66
| | | | commit_hash:eba9127d442dfdfe410219202e8eee1f41da3cd9
* Intermediate changesrobot-piglet2025-09-051-1/+1
| | | | commit_hash:a1a74a19c885d82a56a4ef72c14ef3b71aaff2cc
* YQL-20241: Use ASCIIZ strings for UdfTerminate (essential udfs)imunkin2025-07-256-86/+86
| | | | commit_hash:1a11133ec66e71b6c798178453a5ab43cdc6761c
* Intermediate changesrobot-piglet2025-07-243-4/+72
| | | | commit_hash:4b0cad6620396d4b5422b264f4aa162104d45e8d
* Intermediate changesrobot-piglet2025-07-212-7/+74
| | | | commit_hash:0897b988c8ca7235b4f13624177866ac14a46fdd
* YQL-20086 udfsvvvv2025-06-1811-71/+71
| | | | commit_hash:631fd9ed259a7c95a618e1265f61df28a87ce922
* Update Cython to 3.0.10.nik-bes2025-05-192-1/+1
| | | | commit_hash:b43c96b868cd36d636192fd2c6024d9f0d2fb6f8
* YQL-19861 abi, udf resolvers, test, pass via yt gatewaysvvvv2025-04-211-1/+1
| | | | commit_hash:6e3f5fac6a8598586987b52d749644d1ce1fccbe
* Intermediate changesrobot-piglet2025-03-041-4/+4
| | | | commit_hash:acdbcb5ab09c7f6e8d5bf8a01ff1954c04d7a80f
* Intermediate changesrobot-piglet2025-03-0123-99/+170
| | | | commit_hash:e2da3ad430fabaa84a74178b1f2103b09ac69ae7
* YQL-19555: Purge YQL_UDF_TEST_CONTRIB moduleimunkin2025-02-141-1/+1
| | | | commit_hash:804e5d328ce4c658ecff2e5a0f259bce717f84f8
* Intermediate changesrobot-piglet2025-02-111-3/+5
| | | | commit_hash:f3acde65f4eb25503f414d5262f52b496123bd96
* Intermediate changesrobot-piglet2025-01-291-1/+1
| | | | commit_hash:a9a86ead632b0451a427621ea384bd732d3653a3
* Intermediate changesrobot-piglet2024-11-211-0/+23
| | | | commit_hash:50996f174ea1b659bc41e9f4e9f27328060af2ca
* Move yql/udfs/common/ to /yql/essentials YQL-19206imunkin2024-11-0898-0/+11693
Except the following directories: * clickhouse/client * datetime * knn * roaring commit_hash:c7da95636144d28db109d6b17ddc762e9bacb59f