| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
commit_hash:78db7b8cacb58da4b6e26dd810baa508a8abfda2
|
| |
|
|
| |
commit_hash:c49256f38de62e8d05359c16a70ea6b88220a9ba
|
| |
|
|
| |
commit_hash:5854a0271a0a2a26dc9891ff1502889edbf38a18
|
| |
|
|
|
|
|
|
|
| |
* Changelog entry\
Type: feature\
Component: proxy
Add the handler that gets the job’s trace events.
commit_hash:c9d1a6d57e886a266967d57065bd3948882808c7
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
I left only these typos:
```cpp
# Build.
build/scripts/link_sbom.py
61: res["properties"].append({'name': 'has_uncommited_changes', 'value': True})
# Contrib.
contrib/clickhouse/src/Coordination/KeeperLogStore.h
19: /// Read log storage from filesystem starting from last_commited_log_index
20: void init(uint64_t last_commited_log_index, uint64_t logs_to_keep);
contrib/clickhouse/src/Coordination/KeeperStateManager.h
36: void loadLogStore(uint64_t last_commited_index, uint64_t logs_to_keep);
contrib/clickhouse/src/Coordination/Changelog.h
100: void readChangelogAndInitWriter(uint64_t last_commited_log_index, uint64_t logs_to_keep);
contrib/clickhouse/src/Databases/DatabaseReplicatedSettings.h
13: M(UInt64, wait_entry_commited_timeout_sec, 3600, "Replicas will try to cancel query if timeout exceed, but initiator host has not executed it yet", 0) \
contrib/clickhouse/src/Databases/DatabaseReplicatedWorker.cpp
337: size_t max_iterations = database->db_settings.wait_entry_commited_timeout_sec;
contrib/python/pytest-benchmark/pytest_benchmark/utils.py
77: parts.append("uncommited-changes")
contrib/libs/poco/Data/include/Poco/Data/Transaction.h
57: /// commited automatically. If no error occurs, rollback is disabled and does
85: /// Rolls back the current database transaction if it has not been commited
contrib/clickhouse/src/Storages/StorageMergeTree.cpp
2061: /// and we should be able to rollback already added (Precomitted) parts
# Kinda contrib.
yt/spark/spark/sql/core/src/test/scala/org/apache/spark/sql/execution/streaming/state/StateStoreSuite.scala
1048: // Reload the store from the commited version and repeat the above test.
# Metrics tag :(
yt/yt/server/master/security_server/security_manager.cpp
595: TWithTagGuard guard(&buffer, "status", "commited");
599: TWithTagGuard guard(&buffer, "status", "uncommited");
```
The only backwards incompatible place is:
https://github.com/ytsaurus/ytsaurus/blob/091bcf82fe4fc8d9a967eb36beddf5767e92e659/yt/python/yt/wrapper/dynamic_table_commands.py#L26-L27
---
9f6a944af13ef3fbf3f25c15b2c2d3982ed7e39b
Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/566
Co-authored-by: ignat <[email protected]>
|
| | |
|
| | |
|
| |
|
|
| |
After this, a new target libyqlplugin.so appears. in open-source cmake build.
Diff in open-source YDB repo looks like the following: https://paste.yandex-team.ru/f302bdb4-7ef2-4362-91c7-6ca45f329264
|
| |
|
|
| |
This reverts commit ca272f12fdd0e8d5c3e957fc87939148f1caaf72, reversing
changes made to 49f8acfc8b0b5c0071b804423bcf53fda26c7c12.
|
|
|
This commit is formed by the following script: https://paste.yandex-team.ru/6f92e4b8-efc5-4d34-948b-15ee2accd7e7/text.
This commit has zero effect on all projects that depend on YQL.
The summary of changes:
- `yql/providers/yt -> ydb/library/yql/providers/yt `- the whole implementation of YT provider is moved into YDB code base for further export as a part of YT YQL plugin shared library;
- `yql/providers/stat/{expr_nodes,uploader} -> ydb/library/yql/providers/stat/{expr_nodes,uploader}` - a small interface without implementation and the description of stat expr nodes;
- `yql/core/extract_predicate/ut -> ydb/library/yql/core/extract_predicate/ut`;
- `yql/core/{ut,ut_common} -> ydb/library/yql/core/{ut,ut_common}`;
- `yql/core` is gone;
- `yql/library/url_preprocessing -> ydb/library/yql/core/url_preprocessing`.
**NB**: all new targets inside `ydb/` are under `IF (NOT CMAKE_EXPORT)` clause which disables them from open-source cmake generation and ya make build. They will be enabled in the subsequent commits.
|