-
Notifications
You must be signed in to change notification settings - Fork 638
KIKIMR-20714 Удаляем LongTxService в тестах #970
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Note This is an automated comment that will be appended during run. 🔴 linux-x86_64-relwithdebinfo: some tests FAILED for commit dfacff4.
🔴 linux-x86_64-release-asan: some tests FAILED for commit dfacff4.
|
ydb/services/ydb/ut/ya.make
Outdated
@@ -22,7 +22,6 @@ SRCS( | |||
ydb_scripting_ut.cpp | |||
ydb_table_ut.cpp | |||
ydb_stats_ut.cpp | |||
ydb_long_tx_ut.cpp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Давай в рамках того пр не будет вообще service/ydb трогать. Удалим эти тесты вместе с апи.
ydb/core/kqp/ut/common/columnshard.h
Outdated
NYdb::NTable::TSession Session; | ||
|
||
public: | ||
TTestHelper(const TKikimrSettings& settings); | ||
TKikimrRunner& GetKikimr(); | ||
NYdb::NTable::TSession& GetSession(); | ||
void CreateTable(const TColumnTableBase& table); | ||
void InsertData(const TColumnTable& table, TTestHelper::TUpdatesBuilder& updates, const std::function<void()> onBeforeCommit = {}, const NYdb::EStatus opStatus = NYdb::EStatus::SUCCESS); | ||
void InsertData(const TColumnTable& table, TTestHelper::TUpdatesBuilder& updates, const std::function<void()> onBeforeCommit = {}, const Ydb::StatusIds_StatusCode& opStatus = Ydb::StatusIds::SUCCESS); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Давай эту функцию вообще уберем. Потому что UNUSED на параметр как-то неаккуратно выходит. Замени использование на BulkUpsert, чтобы ни у кого не было сомнений. Потом туда попробую какие-то хуки добавить
No description provided.