aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Refactor TConfSettinganeporada2025-05-203-227/+301
| | | | commit_hash:2ca0a7e131758036bd15ba9e58dce176b9eff6c9
* YQL-19747: Recover from unclosed ID_QUOTEDvityaman2025-05-205-7/+47
| | | | | | | | | | | | | | | | The simplest solution actually is an SQL injection. --- - Related to `YQL-19747` - Related to https://github.com/ydb-platform/ydb/issues/9056 - Related to https://github.com/ydb-platform/ydb/pull/18146 - Related to https://github.com/vityaman/ydb/issues/46 --- Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1283 commit_hash:7043e7cdd1e0d378926783d31cf5f8e055393aaa
* YQL-19747: Support USE statementvityaman2025-05-2014-16/+387
| | | | | | | | | | | | | | Introduce global analysis which will be extended with more ParseTree analysis later. --- - Related to `YQL-19747` - Related to https://github.com/vityaman/ydb/issues/40 --- Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1281 commit_hash:848fb3fdd6bc9612769c47d66198fca018ff465f
* Intermediate changesrobot-piglet2025-05-203-78/+1004
| | | | commit_hash:6d9d4afb906e7c43e37ca1a135bbe8d1059f19d1
* Add counter for wasted memory from TPagedBuffer in profiling modeilezhankin2025-05-202-14/+48
| | | | | Пример графика с тестового кластера: <https://nda.ya.ru/t/RdGCM06J7EGx4P> commit_hash:4cf9981cc6d7541487678a189386e8e7f091811d
* YQL-19967: Properly handle signatures with run configimunkin2025-05-203-16/+259
| | | | commit_hash:e13229863b189b9ad804f0c6772204399430179e
* Intermediate changesrobot-piglet2025-05-207-14/+66
| | | | commit_hash:ac53b6445d4c78c7724d2cedae353982d0fb8332
* [build] Move PACKAGE_FINAL out of the multimodule to allow inheritancedeshevoy2025-05-201-19/+23
| | | | commit_hash:ada3d2aa3a0918a5cfea996b15bafdde559e60ec
* Intermediate changesrobot-piglet2025-05-2015-13/+870
| | | | commit_hash:4518e1fc835bd128306da321c9c8a7578cfde09c
* Delete get_ruff_configs from pluginalevitskii2025-05-201-9/+0
| | | | | Delete get_ruff_configs from plugin commit_hash:1b26f3aefb621466c931f64226f480a02771d843
* Intermediate changesrobot-piglet2025-05-203-11/+11
| | | | commit_hash:bd56a0bd0fbcf787bb946c427aeab26dec03e32a
* Fix reimport for Cythonshadchin2025-05-209-68/+25
| | | | commit_hash:42f70df990e2d7ee884e3992b246bc66e8374beb
* get rid of sixsnermolaev2025-05-202-2/+1
| | | | commit_hash:b15cc006493a8cc498ed568935b939e12ef35b70
* YT-22593: Migrate remaining medium names to std::stringbabenko2025-05-202-6/+6
| | | | commit_hash:857ad75eb6220bdb01862c10a0b9f1eccbff8ec7
* YT-24485: Support extra gang jobspogorelov2025-05-191-1/+1
| | | | | | | | | | | * Changelog entry Type: feature Component: controller-agent Support extra jobs for gang operations. Introduce gang ranks. commit_hash:1e27fe5d4e042d8ad3d981dfdab718ad41732924
* Per-cluster pragmas yt.TmpFolder, yt.StaticPool, yt.CoreDumpPathaneporada2025-05-1912-52/+48
| | | | commit_hash:363a0eba3a792d5b3bc045acf9b5f5b61e5a914f
* [contrib] abseil-cpp: Fix unbundling for cleanup and crcdeshevoy2025-05-198-5/+93
| | | | commit_hash:c10d05a8085223a0d0896b4a7bed412b1cd23dec
* Small clearingcherepashka2025-05-191-0/+1
| | | | commit_hash:b6ac02b20a0b535213d0e5f83f98cb0b8c909b3c
* Fix long path names in cross-compilation for windowssay2025-05-191-1/+1
| | | | commit_hash:88b6706d0f32805cd889e3eceaa33b89d7ac09d4
* static constexpr auto& Logger -> constinit const auto Loggerbabenko2025-05-1962-62/+62
| | | | | Constinit guarantees that Static Initialization Order Fiasco is impossible for global loggers commit_hash:9bcf2afb71e00c555e90cc61029acfa5dfd41cec
* YQL-19747: Fix unquoted object path completionvityaman2025-05-194-5/+19
| | | | | | | | | | | | | | | | On `SELECT * FROM pn` it completed to `SELECT * FROM ppnv1`, but expected ``` SELECT * FROM `pnv1` ```. --- - Related to `YQL-19747` - Related to https://github.com/ydb-platform/ydb/issues/9056 - Related to https://github.com/vityaman/ydb/issues/44 - Related to https://github.com/ydb-platform/ydb/pull/18146 --- Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1280 commit_hash:e937239fae7bf609bde6358b9b27c2b504c8ba32
* YT-22593: Use std::string in TStringBuilderlukyan2025-05-193-7/+7
| | | | commit_hash:e1d1710ec1d2fa7407a292934f82f2e5804d1c2c
* YQL-19616: Fix TRegexLexer performancevityaman2025-05-1910-86/+144
| | | | | | | | | | | | | | | | | Fix `TRegexLexer` performance. Now it is just 2 times slower than a reference ANTLR implementation on Release mode, so merged regexes are 3 times better than scan&compare. ![image](https://github.com/user-attachments/assets/4e0cb27a-491d-4dbd-b10a-5725ffa6d902) --- - Related to `YQL-19616` - Related to https://github.com/ydb-platform/ydb/issues/15129 - Related to https://github.com/vityaman/ydb/issues/42 --- Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1278 commit_hash:1529f641172fea13f0d33fbfd06a4827c6efde01
* cudnn-9 as default for CUDA12 configurationnechda2025-05-191-1/+1
| | | | commit_hash:4132e1f4956e83a9352e7f66b7b8490fa248aae5
* YT-22593: Migrate more user names and tags to std::stringbabenko2025-05-1912-51/+51
| | | | commit_hash:6053c7af03fde75447fa73dc2a552085f4263250
* Automatic release build for ymake, os_ymakerobot-ya-builder2025-05-193-10/+20
| | | | | Update tools: ymake, os_ymake commit_hash:3683b682e3362694a7bf3c5ae36a4662d38d45bc
* Update Cython to 3.0.10.nik-bes2025-05-19282-10486/+33522
| | | | commit_hash:b43c96b868cd36d636192fd2c6024d9f0d2fb6f8
* Fix and improve documentation commentsakhropov2025-05-181-26/+26
| | | | commit_hash:f542118888ac27e5c731c6da1de70b30e2a082e9
* YT-25084: Reduce FLS leaksbabenko2025-05-1811-125/+77
| | | | | | | 1) Reduce the number of cases when a (leaky) per-thread FLS is being created. 2) Drop source location diagnostics (no longer needed). 3) API change: `GetCurrentPropagatingStorage -> CurrentPropagatingStorage` for mutable access commit_hash:518102e8b6f49ca27828fece1be0effce2746bb5
* [kafka] YT-25055: Support CreateTopicsnadya732025-05-185-13/+164
| | | | | | | | | * Changelog entry Type:feature Component: kafka-proxy Support `CreateTopics` handler. commit_hash:75598450e027d524e8b5fa5faaa69d1cc8707689
* YT-22593: Migrate remaining account names to std::stringbabenko2025-05-184-14/+14
| | | | commit_hash:85eba792e1424988636a3cd891a24632829ee0e6
* Update contrib/restricted/aws/aws-checksums to 0.2.7robot-contrib2025-05-1829-187/+2443
| | | | commit_hash:c5bf5558f1399900ede13429f75a7f75ebd82151
* Fix some babenko-issuesbystrovserg2025-05-181-1/+1
| | | | commit_hash:5ef78a07537ff7cdc07c13d4ab242e006ef81e42
* Fix code styleakhropov2025-05-181-17/+17
| | | | commit_hash:087696f9ed27b5c9a6bbd903c5455cd296f7ca26
* Fix: Set __SSE__ compiler macro for MSVC.akhropov2025-05-181-0/+1
| | | | commit_hash:51813320ce63c56d487a2fcdccbfcf68377914b9
* Fix definition comment at '#endif'akhropov2025-05-181-1/+1
| | | | commit_hash:f24910c8b29891cdfb5d9388bf7ee7b70c6bdb41
* Intermediate changesrobot-piglet2025-05-189-22/+42
| | | | commit_hash:cfd5a8bdf3911e5b89010825428d90d8527efd21
* Make __TBB_CPP17_MEMORY_RESOURCE_PRESENT definition conditional on ↵akhropov2025-05-172-2/+19
| | | | | | __cpp_lib_memory_resource. commit_hash:8359e203305ad480bc706cc35cb46f6e0dbc9e02
* Bind -mpclmul to -mavxthegeorg2025-05-172-23/+18
| | | | commit_hash:fcb024e8b238227809ddb121ed2f7a618ea6a480
* Intermediate changesrobot-piglet2025-05-171-1/+3
| | | | commit_hash:c792028cbc20db1585caee3fa3bd0228e9015954
* YT-22593: Migrate yt/core/rpc to std::stringbabenko2025-05-1739-174/+172
| | | | commit_hash:6e8fd671a665ab7ef1cbbb8da5d226777601297b
* Remove SSE*_ENABLED defines and use predefined compiler macros insteadthegeorg2025-05-172-20/+13
| | | | commit_hash:38a7fed85214a0b939bdd770ba2244ff0f195f63
* Release clangd-18 #4robot-brewer2025-05-171-0/+10
| | | | | https://github.com/yandex/toolchain-registry/releases/tag/clangd-18-v4 commit_hash:628f9af72b3a1096223470ac813a7a31c9d5274b
* New version of the tld SKIP_CHECK SKIP_REVIEWrobot-ratatosk2025-05-171-1/+1
| | | | commit_hash:d5159ca1f0038b0b51481cba021819d2078a7d7b
* YT-25003: Do not decode Any for the purpose of encoding it right backsabdenovch2025-05-162-0/+4
| | | | | | | | | | * Changelog entry Type: fix Component: dynamic-tables/misc-server Fixed snapshot divergence between replay and resave. Additionally optimized schemaful unversioned readers for yson columns. commit_hash:145a5e6558b386e544bbfb7a85d15e6ae146650e
* fix: chip@1.4: add darwin required sysinclscody02025-05-161-0/+2
| | | | commit_hash:c44dc8cb99bb00c0c0871114b80a8f2579d7dd95
* YT-25059: Introduce log levels as constantshiddenpath2025-05-161-0/+9
| | | | | | | This pull request updates the log level setting mechanism within NYT::TConfig from a explicit string-based approach to an enum-like approach. The modification changes assignment from `NYT::TConfig::Get()->LogLevel = "info";` to `NYT::TConfig::Get()->LogLevel = NYT::NLogLevel::Info;` This minimizes typos and misconfigurations as well as aligns with planned removal of enum ELogLevel (for the sake yt/core migration). commit_hash:cf8d9629e4cc27e6a44f089edfc4c158f11e4baf
* [purecalc] Fixed fatal error if Self is used inside evaluationvvvv2025-05-164-4/+32
| | | | commit_hash:493562edfa193d3a2fc93bedbaa7a27771f7dcb8
* Additions and minor improvements to TYPathh0pless2025-05-162-3/+3
| | | | commit_hash:ce5de162cca1625bfac6a0b6f158b96ae54ecc21
* YT-24924: Extend replication card fetch options on master caches when ↵osidorkin2025-05-161-0/+6
| | | | | | replication progress is requested so both rpc_proxy requests and tablet node requests could be served from the same cache entry commit_hash:d21491dbb50497dde2d871faf81b2ba5480373ef