| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
task in separate process
Refactor exec context, add map fmr gateway for underlying native and run map task in separate process
commit_hash:08aecf79d7cd82b978168f138afbeed85314e354
|
|
|
|
|
|
|
|
|
| |
- Fixed multiline tokens
- Fixed REAL number display
- Disabled punctuation highlighting
- Refactored by extracting properties
to core highlighting
commit_hash:a2d1eb6e4e49b1cb785b90accbdecebe977faa13
|
|
|
|
| |
commit_hash:d95cb665e7dd63f67ee4ef7a2602f1c9ec34d26f
|
|
|
|
| |
commit_hash:9b36145268d91eb8ed2f7ac54b006a7ee268a593
|
|
|
|
|
|
|
|
|
|
| |
Introduced a Vim syntax highlighting for YQL.
This is a replacement for an existing almost
manually written conguration. It uses regexes
generated from the original ANTLR4 grammar.
Now only Default lexer mode is supported.
commit_hash:85fa094593bd9d80373754a492b46ede1a50148d
|
|
|
|
| |
commit_hash:0f7d01c349dc801704a27453a3da46573284d7fe
|
|
|
|
| |
commit_hash:778aa5364639806318069575e28e3ec6d757b69e
|
|
|
|
| |
commit_hash:28e7ffac446ec164b114e1e27cbccf1ac4e7086e
|
|
|
|
| |
commit_hash:0db8837c719ce19cf1d9ef561ba7fd77f80a8ae8
|
|
|
|
| |
commit_hash:e7846c444dce1a91050e458886f839bf3424a5c6
|
|
|
|
| |
commit_hash:4bdb12bc8b88e2f51996b218a14171a53d6bb6b1
|
|
|
|
|
| |
Добавление делея между запросами
commit_hash:5da96c91c5fba48bb81893ec61e8e6f69f144728
|
|
|
|
| |
commit_hash:f19dba75a72831698bb37ce88c6e1bbc054cd203
|
|
|
|
| |
commit_hash:632e24794e8bcf6ef0502b7e8c031e964d28d36a
|
|
|
|
|
|
| |
Now it is possible to pass clusters schema
via a JSON file using `-s` flag.
commit_hash:fd579430968881627c77d4586464952176134dc5
|
|
|
|
| |
commit_hash:c1a8fb920a99a419ee1636efe4655ea367cc4b11
|
|
|
|
| |
commit_hash:ff50a44bdfd5c21be7a5c2a0f48165050d5313cd
|
|
|
|
| |
commit_hash:c8d74820e197343a1019edeff4f8c21fc5805244
|
|
|
|
| |
commit_hash:a5cf347a0fdbf87672444c86b9acad24d4ab956a
|
|
|
|
|
|
|
| |
fix
YQL-18878: Provide regex error from 2025.03 version
commit_hash:fdaeba4009bfbedccd39942909bcd303ae4ae932
|
|
|
|
| |
commit_hash:7ef8aac06a5394b98eea88e8519641f5b04e2878
|
|
|
|
| |
commit_hash:0a063bba6282dd67ca5d8e6aa906200ed6a8aed6
|
|
|
|
| |
commit_hash:be87cc6701e6f6ee1e135fb1ec94fc86b919c120
|
|
|
|
| |
commit_hash:9c2d6168402f00f42c25eb95631b419c1483b978
|
|
|
|
| |
commit_hash:7a1e89d4ac973444c2b7275f326889e14b6f9e3d
|
|
|
|
| |
commit_hash:3a624a323006078de71f50747f7b2e8cadba7ccd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
---
- Related to `YQL-19747`
- On top of https://github.com/ytsaurus/ytsaurus/pull/1253
- Related to https://github.com/ydb-platform/ydb/issues/9056
- Related to https://github.com/vityaman/ydb/issues/14
- Related to https://github.com/vityaman/ydb/issues/35
- Related to https://github.com/vityaman/ydb/issues/40
---
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1257
commit_hash:0b842abb27184c88b8177beeea29fb1ea86b7a04
|
|
|
|
| |
commit_hash:6a772aebd3249332cf554bea9ed67a25f3b45876
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Introduce the `SimpleSchemaGateway` to make it easier to implement `SchemaGateway`s. The idea is that actually existing schema providers really do not support filtration such as by name and type, so in practice they return us the whole list and we need to filter it by hand. The `SimpleSchemaGateway` to `SchemaGateway` adapter does this for us -- we only need to implement a path splitting and folder listing.
The other and important feature of the `SimpleSchemaGateway` is that it is simple to implement a caching decorator for it -- just store a mapping `Path -> [FolderEntry]`, while caching a `SchemaGateway` with filters is soooo not trivial.
I also added string constants for known folder entry types, because they should be documented somewhere.
---
- Related to `YQL-19747`
- Related to https://github.com/vityaman/ydb/issues/14
- Related to https://github.com/vityaman/ydb/issues/34
---
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1245
commit_hash:dda6dcac544ca95d5e8e08f1e7de9de6b5770f25
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Clients might want to use custom `NameSet` and `FrequencyData` in their environment, for example, to get their private UDFs and to have more relevant ranking that includes their private UDF and respect their usage pattern.
To achieve this goal I decided to load pure `NameSet` and `FrequencyData` and provide functions for pruning. Also I checked defaults and decided that it is more common for a client to create a `StaticNameService` from pure `NameSet` and `FrequencyData` to keep their pruning consistent.
I also extracted a separate module `ranking`. It will be needed when I will implement `UnionNameService` to union `StaticNameService` and `SchemaNameService`. `UnionNameService` will load `Limit` names from each child and then crop them to sorted prefix of length `Limit` using `IRanking`.
---
- Related to `YQL-19747`
- Related to https://github.com/ydb-platform/ydb/issues/9056
- Related to https://github.com/vityaman/ydb/issues/14
---
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1246
Co-authored-by: vvvv <vvvv@yandex-team.com>
Co-authored-by: vvvv <vvvv@yandex-team.com>
commit_hash:cdca301a58a34e56d537a447b4ff779cd70faea6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- [x] Chained futures, add `CompleteAsync` method (then will migrate the YDB CLI on it).
- [x] Removed deadlined and fallback NameService as unused
- [x] Annotate thread-safe methods with `const` and use `AtomicSharedPtr` for them.
- [x] Move `name` to `name/service` with backward compatibility with the YDB CLI.
---
`CompletionEngine` is left thread-unsafe because of the dependency chain `CompletionEngine -> LocalSyntaxAnalysis -> C3Engine` which is thread-unsafe, but readonly indexed data structures such as `Ranking` and `NameService` are annotated with const and distributed via shared pointers.
I removed deadlined and fallback name services because the first is stupid the second is ahead of its time and is better to be added later to keep interfaces as minimal as possible.
---
The migration on async complete plan:
1. Introduce CompleteAsync
2. Migrate clients on CompleteAsync
3. Make Complete to return Future
4. Migrate clients on Complete
5. Remove CompleteAsync
---
- Related to https://github.com/ydb-platform/ydb/issues/9056
- Related to https://github.com/vityaman/ydb/issues/33
- Related to https://github.com/vityaman/ydb/issues/31
---
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1241
Co-authored-by: vvvv <vvvv@yandex-team.com>
Co-authored-by: vvvv <vvvv@yandex-team.com>
commit_hash:497cc081ab78bebf7354e0acfaa418d936cc8240
|
|
|
|
| |
commit_hash:112bf21627e2883a424e58d1a65caf7af62c24c8
|
|
|
|
| |
commit_hash:6e3f5fac6a8598586987b52d749644d1ce1fccbe
|
|
|
|
| |
commit_hash:393ec43ede4bf529dd68413165afce4bb49a43db
|
|
|
|
| |
commit_hash:5cfb2a0aa2904106df4ae69b9311bcc5a695928d
|
|
|
|
| |
commit_hash:fb1727dda2b8c7d2ff42d4436c54cb7aa1ce4bc2
|
|
|
|
| |
commit_hash:3130610c0735089d0be0e14d07555480bbed5a19
|
|
|
|
| |
commit_hash:2f615b4a2a2726593dd70b36499819265862155f
|
|
|
|
|
|
|
|
|
| |
No description
---
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1185
commit_hash:1def5874ff6a9a5b3dcdd0ad285d2e64b16c9306
|
|
|
|
|
|
|
|
|
|
|
|
| |
- [x] Fix bug with incorrect no-case sorting.
- [x] Get names from `sql_functions.json` and `types.json`.
- [x] Add types and functions ranking according to `rules_corr_basic.json` data via a `PartialSort`.
- [x] Add benchmark workspace.
---
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1167
commit_hash:84d93265fb69bf5651f905d6af038056657e9a16
|
|
|
|
| |
commit_hash:35e335cd8fb87b060881460b5b592519967d5ca0
|
|
|
|
| |
commit_hash:9f628fe1894ee7dcdcbdd161855b668ca6e7380f
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- [x] Parse YQL grammar to extract lexer grammar into `TLexerGrammar`.
- [x] Translate `TLexerGrammar` into regexes.
- [x] Implement a lexer via regexes `TRegexLexer` to test generated regexes validity.
- [x] Test on `Default` syntax mode.
- [x] Test on `ANSI` syntax mode.
---
- Related to https://github.com/ydb-platform/ydb/issues/15129
- Requirement for https://github.com/ytsaurus/ytsaurus/pull/1112
---
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1127
commit_hash:03ffffe81cdafe7f93a4d3fd9a3212fe67f1c72d
|
|
|
|
| |
commit_hash:b710713239241d2c02cad4138362ef0da67faa93
|
|
|
|
| |
commit_hash:334467ee716dce69171d491a61aa6f9b5f914080
|
|
|
|
| |
commit_hash:e2b7b2f9068bb480c3779b387c101673cc6cf7a7
|
|
|
|
| |
commit_hash:50f35111dfe21322f7d24f449ffb9d644521d601
|
|
|
|
| |
commit_hash:c019511f90871e0a4d783856db0fa2272e21a336
|
|
|
|
| |
commit_hash:b673d403e9bfb2ac31eedd8d2231ac018a8f36dd
|
|
|
|
| |
commit_hash:79c042af0cf2c51389b5a22bd866cd211b6acf64
|