summaryrefslogtreecommitdiffstats
path: root/yql/essentials/core/services
Commit message (Collapse)AuthorAgeFilesLines
* YQL-21291: Add Math transformation to Lineagemaxkovalev4 days1-1/+21
| | | | | Lineage для Math теста: https://nda.ya.ru/t/1srEqNWh7ePvpE commit_hash:4f0c162b8eae10afb6a21fc80e9c706600b4618b
* YQL-21240: Fix incorrect indices in Lineage for multiple readsmaxkovalev2026-05-151-5/+7
| | | | | Lineage for test: <https://nda.ya.ru/t/4yOC6uGA7cKyGm> commit_hash:dcc7ae1298216c99f29c9901764a4a8e966b592e
* YQL-21238: Fix purecalc evaluate expressionatarasov52026-05-141-1/+1
| | | | commit_hash:d6fd8be0f258e4ab4488ee564024642686fa8138
* YQL-20095: Enable modernize-use-emplacevitya-smirnov2026-05-133-4/+4
| | | | commit_hash:4d6e2f6fcc1639f09725c0c96de8d2f7f0f70404
* YQL-21186: Improve SqlIn handling in Lineagemaxkovalev2026-04-291-8/+11
| | | | | Lineage for test: <https://nda.ya.ru/t/eyPxnts97arqpX> commit_hash:05f4cab49712a402ce1353f385b238faab4b3043
* YQL-21193: Revert SqlIn fixmaxkovalev2026-04-281-2/+2
| | | | commit_hash:01dcff52d203739de058af6c5671af0a4e37f06c
* YQL-21186: Improve SqlIn support in Lineagemaxkovalev2026-04-241-2/+2
| | | | | | | | | | | | | | | | | Lineage in the added test: ``` "Lineage" = { "key_filtered" = [ { "Input" = 1; "Field" = "key"; "Transforms" = # } ] } ``` commit_hash:5683541e0408a82bdf17b1c39e85f2aec1aab282
* YQL-21159: Add Yson type format to Standalone Lineagemaxkovalev2026-04-233-31/+51
| | | | commit_hash:08873d6b3d108d8d10d4df42250ddb760af7c85b
* Enable by default in codevvvv2026-04-221-1/+1
| | | | commit_hash:020e3a98cf9728898d94711271fdeeb492d1899d
* YQL-21169: Fix cases with incorrect lineage for Standalone formatmaxkovalev2026-04-211-1/+9
| | | | commit_hash:5772c1cbc986baf32188f56f63e8ad2d351183e8
* YQL-21169: Fix case with empty lineage sectionmaxkovalev2026-04-201-2/+8
| | | | commit_hash:e8f4d240978b22a64897e35b56ce6e4d01f97402
* YQL-20810: New lineage formatmaxkovalev2026-04-173-158/+524
| | | | commit_hash:2f752d8d575fe0f6b939cbc9805f2f266493234e
* YQL-20095: Enable readability-isolate-declarationvitya-smirnov2026-04-133-6/+12
| | | | commit_hash:c180c2db4897962cb70063ffdc2ddcd21e5e3418
* YQL-21142: Switch to std::unordered_map due to THashMap exception unsafetymaxkovalev2026-04-131-6/+7
| | | | | Order of tables in `Writes` section is changed in one of tests. The lineage section is the same. commit_hash:aa2856ce13ad788a268aa0f1e8eed2e5d02d2ea4
* YQL-21112: Add memory and time stats for Lineagemaxkovalev2026-03-312-5/+8
| | | | commit_hash:2b6cb5cab108d776184b553f675bf1d31c5b4660
* YQL-21045: Check output_columns in Aggregatemaxkovalev2026-03-241-0/+11
| | | | commit_hash:f2344ead4e70b69a0ec3988914b4ba4c07573828
* YQL-20095: Enable modernize-use-designated-initializersvitya-smirnov2026-03-174-11/+11
| | | | | https://clang.llvm.org/extra/clang-tidy/checks/modernize/use-designated-initializers.html commit_hash:d73eb463c7bec2bda4c362aab10af49979a7ddd3
* YQL-21022: Add FIXME messagemaxkovalev2026-03-111-0/+1
| | | | commit_hash:8dfd63e3e779c2218955a5f69acc1e4c7eaa55e3
* YQL-21022: Avoid crash in assign operator for HashTable with LimitingAllocatormaxkovalev2026-03-111-1/+2
| | | | | | | | | There is a crash in HashTable assign operator with limiting allocator. Unit test with an example of such crash can be found here: <https://nda.ya.ru/t/6mAZahDc7WTzWV> HashTable fix will be done later in a separate PR. commit_hash:10c5974e229a19df66727169705a3456f08c5f36
* YQL-20095: Enable modernize-pass-by-valuevitya-smirnov2026-03-022-4/+8
| | | | commit_hash:4939dfad654f18bb31e40711ee0c39063889f17b
* Avoid full lambda rebuild during OptimizeExpr (eval)vvvv2026-02-241-0/+3
| | | | commit_hash:e1a172d04158adc5a8d6005205d99e7048dfe152
* YQL-20095: Enable modernize-concat-nested-namespacesvitya-smirnov2026-02-173-12/+6
| | | | commit_hash:2c0e0389bf5eca0c8334d55143674a8acf94a88d
* YQL-20739: Fix lineage for appending tablemaxkovalev2026-02-101-20/+38
| | | | commit_hash:0789f55c57c29f9abd92140e88f098188167a0c5
* YQL-20095: Enable misc-use-anonymous-namespacevitya-smirnov2026-02-051-2/+6
| | | | | - https://clang.llvm.org/extra/clang-tidy/checks/misc/use-anonymous-namespace.html commit_hash:746be9b9db256111b2fb6ab4d89844746deebcda
* YQL-20811: Add limiting allocator for lineage calculationmaxkovalev2026-02-042-147/+277
| | | | commit_hash:3cb9bcc764d8fa20ff0b30696012df1b18750b46
* YQL-20095: Enable google-explicit-constructorvitya-smirnov2026-01-232-5/+5
| | | | commit_hash:4d77ad10fd4db303459ec4e45e139967c7fc8196
* YQL-20800 handle dynamic file name dependencyvvvv2025-12-191-10/+22
| | | | commit_hash:fc3e52cbc25ea3080ec4ca1689d9ac7aaae2cd62
* YQL-20739: Fix lineage comparisonmaxkovalev2025-12-122-8/+29
| | | | commit_hash:24b93e6f0886ad1ebdcaaeaac8a4bbe28a0728ae
* YQL-20756: Limit lineage size before export to logbrokermaxkovalev2025-12-101-0/+2
| | | | commit_hash:7ff640cbd3da0ddba8253308c014fff0f2765c52
* YQL-20739: Correctly compare lineagesmaxkovalev2025-12-083-30/+107
| | | | commit_hash:306aaa6cf505446cda926d3878811690814aafda
* YQL-19418: Turn on lineage check at qplayer for standalone casemaxkovalev2025-12-031-18/+18
| | | | commit_hash:4f1c7abe12a27933ef354116181f0cbb8a72b639
* YQL-20675: Improve lineage metricsmaxkovalev2025-11-261-1/+2
| | | | | Fix the case when standalone lineage is used, but operation is failed before lineage calculation. Before it goes to CorrectLineage = 1, which is wrong. commit_hash:f8f30e458faae5a4b01617ebb8b49ccb0f56a743
* YQL-20645 fix pending files scanvvvv2025-11-251-1/+1
| | | | commit_hash:255a34401a5949af770f899fb3c291dd8f639fad
* YQL-20675: Fix Standalone Lineage metricsmaxkovalev2025-11-251-3/+3
| | | | commit_hash:0fbbfd565a1de16651cd0595e0cb8ebcff598879
* YQL-20673 Graph cycle detectorvvvv2025-11-251-2/+6
| | | | commit_hash:a8a7fef19b3cc3445a177192748b987ff6b80786
* YQL-20086: Add yql/essentials Clang Tidy configvitya-smirnov2025-11-211-2/+2
| | | | | | | | | 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-19542: Add metric for Standalone Lineagemaxkovalev2025-10-241-0/+2
| | | | commit_hash:6f153d77b4cdefe9e1908df8d37387d597366a94
* YQL-19542: Capture and replay lineage from QStorage for standalone modemaxkovalev2025-10-241-2/+34
| | | | commit_hash:05befee355a615ea623e50d8cee60f2badaa0d0d
* YQL query dumperziganshinmr2025-10-211-2/+2
| | | | | | Реализация full capture/replay (см тикет для информации) commit_hash:fbde9af7b610c053ee5e0e8c4936ac426aa9c827
* YQL-19542: Save lineage in qstorage and check at replaymaxkovalev2025-10-204-27/+89
| | | | commit_hash:3693b0059b05bcf38d734e2d395dc3378902675c
* YQL-20086 invert flagvvvv2025-10-102-4/+0
| | | | commit_hash:a6b640bc576263b62884a0b4187ba79c893e13d9
* YQL-20445: Calculate lineage in testsmaxkovalev2025-10-094-10/+61
| | | | commit_hash:6bf28c5a731c7325efa6bbe915c4a4920673c844
* YQL-20086 core (part1)vvvv2025-10-0816-547/+569
| | | | commit_hash:12dbda4defcaef8dd708a69552fc19eba832ce2f
* SeqMode supportudovichenko-r2025-09-183-14/+58
| | | | commit_hash:3d0e8bfb46470e6ac36b0d198cfa1723c665f643
* YQL-20423 pending files should postpone all outer evaluationsvvvv2025-09-151-20/+24
| | | | commit_hash:70c91e881d5f8126d3d1c68a5816f440295330da
* Run Statistics transformer only when CBO is activeudovichenko-r2025-08-191-3/+13
| | | | commit_hash:1de47a6281314d1ed004c2d8fa73c212778e9494
* NormalizeDependsOn pipeline stageziganshinmr2025-07-301-0/+5
| | | | commit_hash:a563966e2448de9828c0786f9ba9939b55fc21fd
* YQL-20153 params fixesvvvv2025-07-041-1/+1
| | | | commit_hash:6a71bff1ad52eddd1b8c7d516f0810f0decf401e
* YQL-20086 corevvvv2025-06-184-36/+36
| | | | commit_hash:af5d81d51befa5cee331fbed69e7e5db2014a260
* YQL-19945 track stack frames for evaluationvvvv2025-05-151-4/+1
| | | | | init commit_hash:6e66d6ead6f0f91a4a60c3ed283dd7800638124a