summaryrefslogtreecommitdiffstats
path: root/yql/essentials/providers/common/codec
Commit message (Collapse)AuthorAgeFilesLines
* YQL-20095: Enable readability-uppercase-literal-suffixvitya-smirnov2026-05-072-16/+16
| | | | commit_hash:41791bb9a63f1993010fb68562e9a5607927307d
* YQL-20095: Enable readability-isolate-declarationvitya-smirnov2026-04-131-1/+2
| | | | commit_hash:c180c2db4897962cb70063ffdc2ddcd21e5e3418
* YQL-20095: Enable readability-container-size-emptyvitya-smirnov2026-04-071-1/+1
| | | | commit_hash:464a95fd6de1a395f8ffe20092e837df995e623c
* YQL-20095: Enable readability-duplicate-includevitya-smirnov2026-04-062-2/+0
| | | | commit_hash:ea7cc749f3373f610d5945dc823ee74493744775
* YQL-20095: Enable modernize-raw-string-literalvitya-smirnov2026-03-061-2/+2
| | | | | https://clang.llvm.org/extra/clang-tidy/checks/modernize/raw-string-literal.html commit_hash:80a511a46b35539fa1f834d4fb5de452ccfbe0ac
* YQL-20095: Apply lost Clang Tidy fixesvitya-smirnov2026-03-051-1/+1
| | | | | | | I do not known why, but these Clang Tidy fixes was lost. Maybe this is because of conditional preprocessing. Maybe Clang Tidy is ran only on changed sources. commit_hash:718e5487699b21b643ed90729ce8347c84cbd6ee
* YQL-20095: Enable modernize-loop-convertvitya-smirnov2026-02-271-6/+5
| | | | | | | | - https://clang.llvm.org/extra/clang-tidy/checks/modernize/loop-convert.html Semi-automatic translation was performed. Manually rewritten some types and names. commit_hash:0ad921f0d512dd4a8ccc8af557197ce6a02582e1
* YQL-20095: Enable modernize-avoid-c-arraysvitya-smirnov2026-02-191-25/+32
| | | | commit_hash:da491ee93c4f4d3c885c7908a22b4d5d66c80388
* YQL-20095: Enable modernize-concat-nested-namespacesvitya-smirnov2026-02-1711-50/+22
| | | | commit_hash:2c0e0389bf5eca0c8334d55143674a8acf94a88d
* Add support for tzdate/bigtzdate native typesaneporada2026-02-051-1/+3
| | | | commit_hash:8563c1803eac0b59ea849c96cb65d441429dd2db
* YQL-20095: Enable google-explicit-constructorvitya-smirnov2026-01-232-2/+2
| | | | commit_hash:4d77ad10fd4db303459ec4e45e139967c7fc8196
* YQL-20086: Enable arcadia and bugprone checksvitya-smirnov2025-11-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-212-4/+6
| | | | | | | | | 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-20086 invert flagvvvv2025-10-104-8/+0
| | | | commit_hash:a6b640bc576263b62884a0b4187ba79c893e13d9
* YQL-20086 providersvvvv2025-10-0718-1825/+1762
| | | | commit_hash:a675bf6d0296252a9fe2303b8f0a9e88c923087d
* YQL-20237 fixvvvv2025-07-241-3/+7
| | | | commit_hash:bd6e641a706a082a31d12e3064aecb994df7b220
* YQL-20125 fixvvvv2025-07-111-2/+6
| | | | commit_hash:f51c77dc72df30e1a870e784f99b1e8148e6cedb
* Handle file switch in TInputBufArrowInputStreamziganshinmr2025-07-031-1/+6
| | | | commit_hash:3ca393495093f5e93a9cf18fe14aae3214aaa9f7
* YQL-20086 providersvvvv2025-06-192-6/+6
| | | | commit_hash:3f4b66a979b9b87af7cdfd80f139eb132532e910
* YQL fixed block transport in case of null columnsgrigoriypisar2025-06-102-1/+5
| | | | | YQL fixed string block transport commit_hash:03c8000cbc64db248ba74bf3b0c57b4c35bf0f98
* Support for Float and datetime types for block inputziganshinmr2025-03-171-0/+1
| | | | commit_hash:597037e53404fd1a27020e8c4edc89908481672c
* YQL-18303: Introduce Split and MakeTz* overloadsimunkin2025-02-261-1/+7
| | | | commit_hash:16a38d1b1de0cc97c5cbf97176331ea6691e23be
* Refactor out codec for table formatvvvv2025-02-133-1634/+92
| | | | | init commit_hash:65402bd8880a077306c1ded09b6d1aa8ea03cd1e
* YQL-18548: BlockReader PG types + refactormrlolthe1st2024-12-254-0/+124
| | | | | | | fix fix commit_hash:09713e813e389b07077111daed2ec31b59047bca
* Block output for YT operationsziganshinmr2024-12-133-0/+64
| | | | commit_hash:469d6669ff3d3216234cac1ac27e03e22600aff8
* Merge PR #10587: Block input for YT map operationsaneporada2024-11-124-0/+97
| | | | | initial commit_hash:61c8442fd8a0ebe277511b5d98b334cf6bc95337
* Moved other yql/essentials libs YQL-19206vvvv2024-11-0711-0/+5191
init commit_hash:7d4c435602078407bbf20dd3c32f9c90d2bbcbc0