Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion ydb/core/tx/columnshard/columnshard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,11 @@ void TColumnShard::FillColumnTableStats(const TActorContext& ctx, std::unique_pt
FillTxTableStats(tableStats);
ConfigureStats(*columnStats, tableStats);

LOG_S_TRACE("Add stats for table, tableLocalID=" << tableLocalID);
{
// Workaround "reference to local binding declared in enclousing function" issue for clang14
ui64 id = tableLocalID;
LOG_S_TRACE("Add stats for table, tableLocalID=" << id);
}
}
}

Expand Down