You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UNIT_ASSERT_STRING_CONTAINS(status.GetIssues().ToString(), TStringBuilder() << "Info: Query result rows count is " << numberRows << ", that is larger than allowed limit " << forgetRowsLimit << " rows for one time forget, results will be forgotten in the background process");
1759
+
const TString countResultsQuery = fmt::format(R"(
1760
+
SELECT COUNT(*)
1761
+
FROM `.metadata/result_sets`
1762
+
WHERE execution_id = "{execution_id}" AND expire_at > CurrentUtcTimestamp();
while (TInstant::Now() - forgetChecksStart <= TDuration::Minutes(5)) {
1767
+
NYdb::NTable::TDataQueryResult result = session.ExecuteDataQuery(countResultsQuery, NYdb::NTable::TTxControl::BeginTx().CommitTx()).ExtractValueSync();
0 commit comments